2014-05-03 06:02:51 -07:00
|
|
|
|
2014-05-27 12:44:56 +01:00
|
|
|
#include "Globals.h"
|
2014-05-21 19:58:48 +01:00
|
|
|
#include "ChunkData.h"
|
2014-05-03 06:02:51 -07:00
|
|
|
|
2014-04-27 12:25:03 -07:00
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2014-06-16 15:12:50 +01:00
|
|
|
class cMockAllocationPool
|
|
|
|
: public cAllocationPool<cChunkData::sChunkSection>
|
|
|
|
{
|
|
|
|
virtual cChunkData::sChunkSection * Allocate()
|
|
|
|
{
|
|
|
|
return new cChunkData::sChunkSection();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void Free(cChunkData::sChunkSection * a_Ptr)
|
|
|
|
{
|
|
|
|
delete a_Ptr;
|
|
|
|
}
|
|
|
|
} Pool;
|
|
|
|
cChunkData buffer(Pool);
|
2014-05-03 06:02:51 -07:00
|
|
|
return 0;
|
2014-04-27 12:25:03 -07:00
|
|
|
}
|