Changeset 988 for branches/Carsten_PtrWork/Source/System/Cluster/Window/SortLast/OSGParallelComposerBase.cpp
- Timestamp:
- 10/24/07 19:30:30 (10 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork/Source/System/Cluster/Window/SortLast/OSGParallelComposerBase.cpp
r976 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> … … 66 67 #include "OSGParallelComposer.h" 67 68 68 #include "boost/bind.hpp"69 69 70 70 OSG_BEGIN_NAMESPACE … … 143 143 "NULL", 144 144 0, 145 (Proto typeCreateF) &ParallelComposerBase::createEmpty,145 (ProtoContainerCreateF) &ParallelComposerBase::createEmpty, 146 146 ParallelComposer::initMethod, 147 147 (InitalInsertDescFunc) &ParallelComposerBase::classDescInserter, … … 195 195 /*------------------------------ get -----------------------------------*/ 196 196 197 FieldContainerType &ParallelComposerBase::getType(void) 197 FieldContainerType & 198 ParallelComposerBase::getType(void) 198 199 { 199 200 return _type; 200 201 } 201 202 202 const FieldContainerType &ParallelComposerBase::getType(void) const 203 FieldContainerType const & 204 ParallelComposerBase::getType(void) const 203 205 { 204 206 return _type; 205 207 } 206 208 207 UInt32 ParallelComposerBase::getContainerSize(void) const 209 UInt32 210 ParallelComposerBase::getContainerSize(void) const 208 211 { 209 212 return sizeof(ParallelComposer);
