view 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
line wrap: on
line source

#ifndef INCLUDED_CELL_BUFFER_MANAGER
#define INCLUDED_CELL_BUFFER_MANAGER

#include "base.h"
#include "BufferManager.h"

class CellBufferManager : public BufferManager {
public:
    CellBufferManager(int num) :BufferManager(num){}

    BASE_NEW_DELETE(CellBufferManager);

    void init(void);
};

#endif