deargui-vpl/ref/virtools/Samples/Behaviors/Grids/OpenList.cpp

35 lines
1.2 KiB
C++

#include "CKAll.h"
#include "OpenList.h"
/////////////////////////////////////////////////////////////////////////////////////////////////////////
// OpenListLinker
/////////////////////////////////////////////////////////////////////////////////////////////////////////
OpenListLinker::OpenListLinker(int context, int buffer)
{
m_ContextID = context;
Reserve(buffer);
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////
// OpenListLinker
/////////////////////////////////////////////////////////////////////////////////////////////////////////
OpenListLinker::~OpenListLinker()
{
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////
// OpenListGrid
/////////////////////////////////////////////////////////////////////////////////////////////////////////
OpenListGrid::OpenListGrid(int context, int buffer)
{
m_ContextID = context;
Reserve(buffer);
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////
// ~OpenListGrid
/////////////////////////////////////////////////////////////////////////////////////////////////////////
OpenListGrid::~OpenListGrid()
{
}