- Timestamp:
- 05/05/08 06:58:23 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/NodeCores/Drawables/Geometry/Base/WS/OSGGeometryBase.inl
r1193 r1197 77 77 //! Get the value of the Geometry::_sfTypes field. 78 78 inline 79 GeoIntegralProperty PtrGeometryBase::getTypes(void) const79 GeoIntegralProperty * 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( const GeoIntegralPropertyPtrvalue)86 void GeometryBase::setTypes(GeoIntegralProperty * const value) 87 87 { 88 88 editSField(TypesFieldMask); … … 93 93 //! Get the value of the Geometry::_sfLengths field. 94 94 inline 95 GeoIntegralProperty PtrGeometryBase::getLengths(void) const95 GeoIntegralProperty * GeometryBase::getLengths(void) const 96 96 { 97 97 return _sfLengths.getValue(); … … 100 100 //! Set the value of the Geometry::_sfLengths field. 101 101 inline 102 void GeometryBase::setLengths( const GeoIntegralPropertyPtrvalue)102 void GeometryBase::setLengths(GeoIntegralProperty * const value) 103 103 { 104 104 editSField(LengthsFieldMask); … … 208 208 //! Get the value of the \a index element the Geometry::_mfProperties field. 209 209 inline 210 GeoVectorProperty PtrGeometryBase::getProperties(const UInt32 index) const210 GeoVectorProperty * GeometryBase::getProperties(const UInt32 index) const 211 211 { 212 212 return _mfProperties[index]; … … 215 215 //! Get the value of the \a index element the Geometry::_mfPropIndices field. 216 216 inline 217 GeoIntegralProperty PtrGeometryBase::getPropIndices(const UInt32 index) const217 GeoIntegralProperty * GeometryBase::getPropIndices(const UInt32 index) const 218 218 { 219 219 return _mfPropIndices[index];
