view include/TaskManager/CellTaskInfo.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_CELL_TASK_INFO
#define INCLUDED_CELL_TASK_INFO

#include "base.h"
#include "TaskInfo.h"

class CellTaskInfo : public TaskInfo {
public:
    BASE_NEW_DELETE(CellTaskInfo);

    /* function */
    int extend_pool_taskList(int num);
    TaskListPtr get_available_taskList(void);
    void clear_taskList(void);
};

#endif