Mercurial > hg > Members > kono > Cerium
annotate include/TaskManager/CellBufferManager.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 | 7075842aa155 |
rev | line source |
---|---|
58 | 1 #ifndef INCLUDED_CELL_BUFFER_MANAGER |
2 #define INCLUDED_CELL_BUFFER_MANAGER | |
3 | |
109 | 4 #ifndef INCLUDED_BASE_H_ |
5 # include "base.h" | |
6 #endif | |
7 | |
58 | 8 #ifndef INCLUDED_BUFFER_MANAGER |
9 # include "BufferManager.h" | |
10 #endif | |
11 | |
12 class CellBufferManager : public BufferManager { | |
13 public: | |
109 | 14 CellBufferManager(int num) :BufferManager(num){} |
15 | |
16 BASE_NEW_DELETE(CellBufferManager); | |
63 | 17 |
58 | 18 void init(void); |
19 }; | |
20 | |
21 #endif |