view 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
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