- Timestamp:
- 04/18/08 04:10:31 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/NodeCores/Drawables/Geometry/Base/WS/OSGGeometryBase.h
r1161 r1178 162 162 163 163 164 GeoIntegralPropertyPtr ConstgetTypes (void) const;165 166 GeoIntegralPropertyPtr ConstgetLengths (void) const;167 168 GeoVectorPropertyPtr ConstgetProperties (const UInt32 index) const;164 GeoIntegralPropertyPtr getTypes (void) const; 165 166 GeoIntegralPropertyPtr getLengths (void) const; 167 168 GeoVectorPropertyPtr getProperties (const UInt32 index) const; 169 169 const MFUnrecChildGeoVectorPropertyPtr &getProperties (void) const; 170 170 171 GeoIntegralPropertyPtr ConstgetPropIndices (const UInt32 index) const;171 GeoIntegralPropertyPtr getPropIndices (const UInt32 index) const; 172 172 const MFUnrecChildGeoIntegralPropertyPtr &getPropIndices (void) const; 173 173 … … 183 183 /*! \{ */ 184 184 185 void setTypes ( GeoIntegralPropertyPtrConstArgvalue);186 void setLengths ( GeoIntegralPropertyPtrConstArgvalue);185 void setTypes (const GeoIntegralPropertyPtr value); 186 void setLengths (const GeoIntegralPropertyPtr value); 187 187 void setDlistCache (const bool &value); 188 188 … … 197 197 /*! \{ */ 198 198 199 void pushToProperties ( GeoVectorPropertyPtrConstArgvalue );199 void pushToProperties (const GeoVectorPropertyPtr value ); 200 200 void assignProperties (const MFUnrecChildGeoVectorPropertyPtr &value); 201 void insertIntoProperties ( UInt32uiIndex,202 GeoVectorPropertyPtrConstArgvalue );203 void replaceInProperties ( UInt32uiIndex,204 GeoVectorPropertyPtrConstArgvalue );205 void replaceInProperties ( GeoVectorPropertyPtrConstArgpOldElem,206 GeoVectorPropertyPtrConstArgpNewElem);201 void insertIntoProperties ( UInt32 uiIndex, 202 const GeoVectorPropertyPtr value ); 203 void replaceInProperties ( UInt32 uiIndex, 204 const GeoVectorPropertyPtr value ); 205 void replaceInProperties (const GeoVectorPropertyPtr pOldElem, 206 const GeoVectorPropertyPtr pNewElem); 207 207 void removeFromProperties (UInt32 uiIndex ); 208 void removeFromProperties( GeoVectorPropertyPtrConstArgvalue );208 void removeFromProperties(const GeoVectorPropertyPtr value ); 209 209 void clearProperties (void ); 210 210 211 211 212 212 213 void pushToPropIndices ( GeoIntegralPropertyPtrConstArgvalue );213 void pushToPropIndices (const GeoIntegralPropertyPtr value ); 214 214 void assignPropIndices (const MFUnrecChildGeoIntegralPropertyPtr &value); 215 void insertIntoPropIndices ( UInt32uiIndex,216 GeoIntegralPropertyPtrConstArgvalue );217 void replaceInPropIndices ( UInt32uiIndex,218 GeoIntegralPropertyPtrConstArgvalue );219 void replaceInPropIndices ( GeoIntegralPropertyPtrConstArgpOldElem,220 GeoIntegralPropertyPtrConstArgpNewElem);215 void insertIntoPropIndices ( UInt32 uiIndex, 216 const GeoIntegralPropertyPtr value ); 217 void replaceInPropIndices ( UInt32 uiIndex, 218 const GeoIntegralPropertyPtr value ); 219 void replaceInPropIndices (const GeoIntegralPropertyPtr pOldElem, 220 const GeoIntegralPropertyPtr pNewElem); 221 221 void removeFromPropIndices (UInt32 uiIndex ); 222 void removeFromPropIndices( GeoIntegralPropertyPtrConstArgvalue );222 void removeFromPropIndices(const GeoIntegralPropertyPtr value ); 223 223 void clearPropIndices (void ); 224 224
