view example/dependency_task/ppe/Print.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_PRINT
#define INCLUDED_TASK_PRINT

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

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

#endif