view include/TaskManager/TaskList.h @ 201:b257e27d995c

add SceneGraphIterator
author gongo@gendarme.cr.ie.u-ryukyu.ac.jp
date Mon, 26 Jan 2009 16:46:59 +0900
parents 5c194c71eca8
children 59c3b9df3c67
line wrap: on
line source

#ifndef INCLUDED_TASKLIST
#define INCLUDED_TASKLIST

#ifndef INCLUDED_BASE_H_
#  include "base.h"
#endif

#ifndef INCLUDED_TASK
#  include "Task.h"
#endif

// sizeof(Task)*TASK_MAX_SIZE = 512 byte
#define TASK_MAX_SIZE 16

class TaskList { // 528byte
public:
    BASE_NEW_DELETE(TaskList);

    int length; // 4 byte
    TaskList *next; // 4 byte
    Task tasks[TASK_MAX_SIZE]; // 512
    int a[2]; // padding

    static TaskList* append(TaskList*, TaskList*);
};

typedef TaskList* TaskListPtr;

#endif