Mercurial > hg > Members > kono > Cerium
view include/TaskManager/TaskQueueInfo.h @ 346:2972f0bdd18c
remove SceneGraph::createFromXMLfile
author | e065746@localhost.localdomain |
---|---|
date | Wed, 08 Jul 2009 14:21:46 +0900 |
parents | 7075842aa155 |
children |
line wrap: on
line source
#ifndef INCLUDED_TASK_QUEUE_INFO #define INCLUDED_TASK_QUEUE_INFO #include "TaskQueue.h" class TaskQueueInfo { public: /* constructor */ TaskQueueInfo(void); ~TaskQueueInfo(void); /* functions */ int init(int num); TaskQueuePtr create(TaskPtr task); void free(TaskQueuePtr queue); private: /* variables */ TaskQueuePtr taskQueuePool; TaskQueuePtr freeTaskQueue; /* functions */ int extend_pool(int num); void destroy(void); }; #endif