Mercurial > hg > Game > Cerium
annotate include/TaskManager/CellBufferManager.h @ 310:364abe879376 draft
remove smanager
author | e065746@localhost.localdomain |
---|---|
date | Mon, 08 Jun 2009 20:31:29 +0900 |
parents | 3fc86ddf5d1c |
children |
rev | line source |
---|---|
58 | 1 #ifndef INCLUDED_CELL_BUFFER_MANAGER |
2 #define INCLUDED_CELL_BUFFER_MANAGER | |
3 | |
307 | 4 #include "base.h" |
5 #include "BufferManager.h" | |
58 | 6 |
7 class CellBufferManager : public BufferManager { | |
8 public: | |
109 | 9 CellBufferManager(int num) :BufferManager(num){} |
10 | |
11 BASE_NEW_DELETE(CellBufferManager); | |
63 | 12 |
58 | 13 void init(void); |
14 }; | |
15 | |
16 #endif |