- Timestamp:
- 04/22/08 04:54:20 (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/FieldContainer/Misc/OSGContainerCollectionBase.inl
r1178 r1184 44 44 ** ** 45 45 ** Do not change this file, changes should be done in the derived ** 46 ** class Container Pool!46 ** class ContainerCollection! 47 47 ** ** 48 48 ***************************************************************************** … … 54 54 //! access the type of the class 55 55 inline 56 OSG::FieldContainerType &Container PoolBase::getClassType(void)56 OSG::FieldContainerType &ContainerCollectionBase::getClassType(void) 57 57 { 58 58 return _type; … … 61 61 //! access the numerical type of the class 62 62 inline 63 OSG::UInt32 Container PoolBase::getClassTypeId(void)63 OSG::UInt32 ContainerCollectionBase::getClassTypeId(void) 64 64 { 65 65 return _type.getId(); … … 67 67 68 68 inline 69 OSG::UInt16 Container PoolBase::getClassGroupId(void)69 OSG::UInt16 ContainerCollectionBase::getClassGroupId(void) 70 70 { 71 71 return _type.getGroupId(); … … 74 74 /*------------------------------ get -----------------------------------*/ 75 75 76 //! Get the value of the Container Pool::_sfName field.76 //! Get the value of the ContainerCollection::_sfName field. 77 77 78 78 inline 79 std::string &Container PoolBase::editName(void)79 std::string &ContainerCollectionBase::editName(void) 80 80 { 81 81 editSField(NameFieldMask); … … 84 84 } 85 85 86 //! Get the value of the Container Pool::_sfName field.86 //! Get the value of the ContainerCollection::_sfName field. 87 87 inline 88 const std::string &Container PoolBase::getName(void) const88 const std::string &ContainerCollectionBase::getName(void) const 89 89 { 90 90 return _sfName.getValue(); … … 93 93 #ifdef OSG_1_GET_COMPAT 94 94 inline 95 std::string &Container PoolBase::getName (void)95 std::string &ContainerCollectionBase::getName (void) 96 96 { 97 97 return this->editName (); … … 99 99 #endif 100 100 101 //! Set the value of the Container Pool::_sfName field.101 //! Set the value of the ContainerCollection::_sfName field. 102 102 inline 103 void Container PoolBase::setName(const std::string &value)103 void ContainerCollectionBase::setName(const std::string &value) 104 104 { 105 105 editSField(NameFieldMask); … … 108 108 } 109 109 110 //! Get the value of the \a index element the Container Pool::_mfContainers field.110 //! Get the value of the \a index element the ContainerCollection::_mfContainers field. 111 111 inline 112 FieldContainerPtr Container PoolBase::getContainers(const UInt32 index) const112 FieldContainerPtr ContainerCollectionBase::getContainers(const UInt32 index) const 113 113 { 114 114 return _mfContainers[index]; 115 115 } 116 116 117 //! Get the Container Pool::_mfContainers field.117 //! Get the ContainerCollection::_mfContainers field. 118 118 inline 119 const MFUnrecFieldContainerPtr &Container PoolBase::getContainers(void) const119 const MFUnrecFieldContainerPtr &ContainerCollectionBase::getContainers(void) const 120 120 { 121 121 return _mfContainers; … … 125 125 #ifdef OSG_MT_CPTR_ASPECT 126 126 inline 127 void Container PoolBase::execSync ( ContainerPoolBase *pFrom,127 void ContainerCollectionBase::execSync ( ContainerCollectionBase *pFrom, 128 128 ConstFieldMaskArg whichField, 129 129 AspectOffsetStore &oOffsets, … … 146 146 147 147 inline 148 Char8 *Container PoolBase::getClassname(void)148 Char8 *ContainerCollectionBase::getClassname(void) 149 149 { 150 return "Container Pool";150 return "ContainerCollection"; 151 151 } 152 OSG_GEN_CONTAINERPTR(Container Pool);152 OSG_GEN_CONTAINERPTR(ContainerCollection); 153 153 154 154 OSG_END_NAMESPACE
