- Timestamp:
- 04/18/08 04:10:31 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/NodeCores/Drawables/Geometry/Base/ES/OSGGeometryBase.inl
r1161 r1178 77 77 //! Get the value of the Geometry::_sfTypes field. 78 78 inline 79 GeoIntegralPropertyPtr ConstGeometryBase::getTypes(void) const79 GeoIntegralPropertyPtr GeometryBase::getTypes(void) const 80 80 { 81 81 return _sfTypes.getValue(); … … 84 84 //! Set the value of the Geometry::_sfTypes field. 85 85 inline 86 void GeometryBase::setTypes( GeoIntegralPropertyPtrConstArgvalue)86 void GeometryBase::setTypes(const GeoIntegralPropertyPtr value) 87 87 { 88 88 editSField(TypesFieldMask); … … 94 94 //! Get the value of the Geometry::_sfLengths field. 95 95 inline 96 GeoIntegralPropertyPtr ConstGeometryBase::getLengths(void) const96 GeoIntegralPropertyPtr GeometryBase::getLengths(void) const 97 97 { 98 98 return _sfLengths.getValue(); … … 101 101 //! Set the value of the Geometry::_sfLengths field. 102 102 inline 103 void GeometryBase::setLengths( GeoIntegralPropertyPtrConstArgvalue)103 void GeometryBase::setLengths(const GeoIntegralPropertyPtr value) 104 104 { 105 105 editSField(LengthsFieldMask); … … 177 177 //! Get the value of the \a index element the Geometry::_mfProperties field. 178 178 inline 179 GeoVectorPropertyPtr ConstGeometryBase::getProperties(const UInt32 index) const179 GeoVectorPropertyPtr GeometryBase::getProperties(const UInt32 index) const 180 180 { 181 181 return _mfProperties[index]; … … 191 191 //! Get the value of the \a index element the Geometry::_mfPropIndices field. 192 192 inline 193 GeoIntegralPropertyPtr ConstGeometryBase::getPropIndices(const UInt32 index) const193 GeoIntegralPropertyPtr GeometryBase::getPropIndices(const UInt32 index) const 194 194 { 195 195 return _mfPropIndices[index];
