view example/dependency_task/ppe/Print.h @ 109:5c194c71eca8

Cerium cvs version
author gongo@gendarme.local
date Wed, 12 Nov 2008 17:39:33 +0900
parents
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