view example/HelloWorld/ppe/Hello.h @ 325:f79cacba09b1

add inner_product is minus case.
author e065725@yutaka.st.ie.u-ryukyu.ac.jp
date Thu, 11 Jun 2009 16:55:10 +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