Mercurial > hg > Game > Cerium
view include/TaskManager/FifoTaskManagerImpl.h @ 11:587baff06cbc
Initial revision
author | akira |
---|---|
date | Thu, 07 Feb 2008 19:17:06 +0900 |
parents | 2356238ebea7 |
children | 41ccd4b38184 |
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 #ifndef INCLUDED_MAIL_MANAGER # include "MailManager.h" #endif class FifoTaskManagerImpl : public TaskManagerImpl { public: /* functions */ void init(void); void run(void); TaskListPtr set_task(void); private: /* variables */ MailManager *mailManager; /* functions */ MailQueuePtr mail_check(MailQueuePtr mail_list); }; #endif