- Timestamp:
- 04/18/08 04:10:31 (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/NodeCores/Drawables/Geometry/Base/ES/OSGGeometryBase.h
r1161 r1178 152 152 153 153 154 GeoIntegralPropertyPtr ConstgetTypes (void) const;155 156 GeoIntegralPropertyPtr ConstgetLengths (void) const;157 158 GeoVectorPropertyPtr ConstgetProperties (const UInt32 index) const;154 GeoIntegralPropertyPtr getTypes (void) const; 155 156 GeoIntegralPropertyPtr getLengths (void) const; 157 158 GeoVectorPropertyPtr getProperties (const UInt32 index) const; 159 159 const MFUnrecChildGeoVectorPropertyPtr &getProperties (void) const; 160 160 161 GeoIntegralPropertyPtr ConstgetPropIndices (const UInt32 index) const;161 GeoIntegralPropertyPtr getPropIndices (const UInt32 index) const; 162 162 const MFUnrecChildGeoIntegralPropertyPtr &getPropIndices (void) const; 163 163 … … 167 167 /*! \{ */ 168 168 169 void setTypes ( GeoIntegralPropertyPtrConstArgvalue);170 void setLengths ( GeoIntegralPropertyPtrConstArgvalue);169 void setTypes (const GeoIntegralPropertyPtr value); 170 void setLengths (const GeoIntegralPropertyPtr value); 171 171 172 172 /*! \} */ … … 180 180 /*! \{ */ 181 181 182 void pushToProperties ( GeoVectorPropertyPtrConstArgvalue );182 void pushToProperties (const GeoVectorPropertyPtr value ); 183 183 void assignProperties (const MFUnrecChildGeoVectorPropertyPtr &value); 184 void insertIntoProperties ( UInt32uiIndex,185 GeoVectorPropertyPtrConstArgvalue );186 void replaceInProperties ( UInt32uiIndex,187 GeoVectorPropertyPtrConstArgvalue );188 void replaceInProperties ( GeoVectorPropertyPtrConstArgpOldElem,189 GeoVectorPropertyPtrConstArgpNewElem);184 void insertIntoProperties ( UInt32 uiIndex, 185 const GeoVectorPropertyPtr value ); 186 void replaceInProperties ( UInt32 uiIndex, 187 const GeoVectorPropertyPtr value ); 188 void replaceInProperties (const GeoVectorPropertyPtr pOldElem, 189 const GeoVectorPropertyPtr pNewElem); 190 190 void removeFromProperties (UInt32 uiIndex ); 191 void removeFromProperties( GeoVectorPropertyPtrConstArgvalue );191 void removeFromProperties(const GeoVectorPropertyPtr value ); 192 192 void clearProperties (void ); 193 193 194 194 195 195 196 void pushToPropIndices ( GeoIntegralPropertyPtrConstArgvalue );196 void pushToPropIndices (const GeoIntegralPropertyPtr value ); 197 197 void assignPropIndices (const MFUnrecChildGeoIntegralPropertyPtr &value); 198 void insertIntoPropIndices ( UInt32uiIndex,199 GeoIntegralPropertyPtrConstArgvalue );200 void replaceInPropIndices ( UInt32uiIndex,201 GeoIntegralPropertyPtrConstArgvalue );202 void replaceInPropIndices ( GeoIntegralPropertyPtrConstArgpOldElem,203 GeoIntegralPropertyPtrConstArgpNewElem);198 void insertIntoPropIndices ( UInt32 uiIndex, 199 const GeoIntegralPropertyPtr value ); 200 void replaceInPropIndices ( UInt32 uiIndex, 201 const GeoIntegralPropertyPtr value ); 202 void replaceInPropIndices (const GeoIntegralPropertyPtr pOldElem, 203 const GeoIntegralPropertyPtr pNewElem); 204 204 void removeFromPropIndices (UInt32 uiIndex ); 205 void removeFromPropIndices( GeoIntegralPropertyPtrConstArgvalue );205 void removeFromPropIndices(const GeoIntegralPropertyPtr value ); 206 206 void clearPropIndices (void ); 207 207
