view include/TaskManager/FifoTaskManagerImpl.h @ 89:a309cf4eafc5

*** empty log message ***
author gongo
date Wed, 27 Feb 2008 17:26:40 +0900
parents 7492eb28b577
children 5c194c71eca8
line wrap: on
line source

#ifndef INCLUDED_FIFO_TASK_MANAGER_IMPL
#define INCLUDED_FIFO_TASK_MANAGER_IMPL

#ifndef INCLUDED_TASK_MANAGER_IMPL
#  include "TaskManagerImpl.h"
#endif

class FifoTaskManagerImpl : public TaskManagerImpl {
public:
    /* functions */
    void init(void);
    void run(void);
    void spawn_task(HTaskPtr);
};

#endif