Changeset 988 for branches/Carsten_PtrWork/Source/System/FieldContainer/Misc/OSGContainerPoolBase.cpp
- Timestamp:
- 10/24/07 19:30:30 (11 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork/Source/System/FieldContainer/Misc/OSGContainerPoolBase.cpp
r979 r988 57 57 #include <cstdio> 58 58 #include <boost/assign/list_of.hpp> 59 #include <boost/bind.hpp> 59 60 60 61 #include <OSGConfig.h> … … 67 68 #include "OSGContainerPool.h" 68 69 69 #include "boost/bind.hpp"70 70 71 71 OSG_BEGIN_NAMESPACE … … 128 128 "ContainerPool", 129 129 0, 130 (Proto typeCreateF) &ContainerPoolBase::createEmpty,130 (ProtoContainerCreateF) &ContainerPoolBase::createEmpty, 131 131 ContainerPool::initMethod, 132 132 (InitalInsertDescFunc) &ContainerPoolBase::classDescInserter, … … 170 170 /*------------------------------ get -----------------------------------*/ 171 171 172 FieldContainerType &ContainerPoolBase::getType(void) 172 FieldContainerType & 173 ContainerPoolBase::getType(void) 173 174 { 174 175 return _type; 175 176 } 176 177 177 const FieldContainerType &ContainerPoolBase::getType(void) const 178 FieldContainerType const & 179 ContainerPoolBase::getType(void) const 178 180 { 179 181 return _type; 180 182 } 181 183 182 UInt32 ContainerPoolBase::getContainerSize(void) const 184 UInt32 185 ContainerPoolBase::getContainerSize(void) const 183 186 { 184 187 return sizeof(ContainerPool);
