Changeset 1288 for trunk/Source/System/NodeCores/Drawables/Geometry/Properties/OSGGeoMultiPropertyDataBase.inl
- Timestamp:
- 06/09/08 01:10:45 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/NodeCores/Drawables/Geometry/Properties/OSGGeoMultiPropertyDataBase.inl
r1193 r1288 86 86 //! Get the value of the GeoMultiPropertyData::_sfGLId field. 87 87 inline 88 const UInt32GeoMultiPropertyDataBase::getGLId(void) const88 UInt32 GeoMultiPropertyDataBase::getGLId(void) const 89 89 { 90 90 return _sfGLId.getValue(); 91 91 } 92 92 93 #ifdef OSG_1_GET_COMPAT94 inline95 UInt32 &GeoMultiPropertyDataBase::getGLId (void)96 {97 return this->editGLId ();98 }99 #endif100 101 93 //! Set the value of the GeoMultiPropertyData::_sfGLId field. 102 94 inline 103 void GeoMultiPropertyDataBase::setGLId(const UInt32 &value)95 void GeoMultiPropertyDataBase::setGLId(const UInt32 value) 104 96 { 105 97 editSField(GLIdFieldMask); … … 110 102 //! Get the value of the \a index element the GeoMultiPropertyData::_mfIData field. 111 103 inline 112 const UInt8GeoMultiPropertyDataBase::getIData(const UInt32 index) const104 UInt8 GeoMultiPropertyDataBase::getIData(const UInt32 index) const 113 105 { 114 106 return _mfIData[index]; … … 122 114 return _mfIData[index]; 123 115 } 124 125 #ifdef OSG_1_GET_COMPAT126 inline127 UInt8 &GeoMultiPropertyDataBase::getIData (const UInt32 index)128 {129 return this->editIData (index);130 }131 132 inline133 MFUInt8 &GeoMultiPropertyDataBase::getIData (void)134 {135 return this->editIData ();136 }137 138 #endif139 116 140 117
