view include/TaskManager/FifoTaskManagerImpl.h @ 42:aa11038dbdc1

*** empty log message ***
author gongo
date Thu, 14 Feb 2008 18:27:37 +0900
parents 31a7ff27ee20
children f154d9d07a42
line wrap: on
line source

#ifndef INCLUDED_FIFO_TASK_MANAGER_IMPL
#define INCLUDED_FIFO_TASK_MANAGER_IMPL

#ifndef INCLUDED_FIFO_TASK_INFO
#  include "FifoTaskInfo.h"
#endif

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

class FifoTaskManagerImpl : public TaskManagerImpl {
public:
    /* constructor */
    ~FifoTaskManagerImpl(void);

    /* functions */
    void init(void);
    void run(void);

    void spawn_task(HTaskPtr);
};

#endif