view TaskManager/Cell/CellBufferManager.h @ 386:6113af8f183b

MemHash...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 06 Aug 2009 19:31:51 +0900
parents 09f33c51a204
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