annotate TaskManager/Cell/CellBufferManager.h @ 366:09f33c51a204
rename include/TaskManager/* and add memory
author |
aaa |
date |
Mon, 27 Jul 2009 15:51:18 +0900 |
parents |
include/TaskManager/CellBufferManager.h@7075842aa155 |
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
|