view example/post_function/spe/Hello.h @ 270:bbc2375153d7

merge 252
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 04 Jun 2009 00:03:49 +0900
parents 5c194c71eca8
children 44c0bce54dcf
line wrap: on
line source

#ifndef INCLUDED_TASK_HELLO
#define INCLUDED_TASK_HELLO

#ifndef INCLUDED_SCHED_TASK
#  include "SchedTask.h"
#endif

class Hello : public SchedTask {
public:
    SchedConstructor(Hello);
    
    int run(void *r, void *w);
};

#endif