- Timestamp:
- 05/05/08 06:39:01 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/NodeCores/Drawables/Geometry/Base/ES/OSGGeometryBase.h
r1178 r1193 146 146 /*! \{ */ 147 147 148 const SFUnrecChildGeoIntegralPropertyPtr *getSFTypes (void) const; 149 const SFUnrecChildGeoIntegralPropertyPtr *getSFLengths (void) const; 150 const MFUnrecChildGeoVectorPropertyPtr *getMFProperties (void) const; 151 const MFUnrecChildGeoIntegralPropertyPtr *getMFPropIndices (void) const; 148 const SFUnrecChildGeoIntegralPropertyPtr *getSFTypes (void) const; 149 SFUnrecChildGeoIntegralPropertyPtr *editSFTypes (void); 150 const SFUnrecChildGeoIntegralPropertyPtr *getSFLengths (void) const; 151 SFUnrecChildGeoIntegralPropertyPtr *editSFLengths (void); 152 const MFUnrecChildGeoVectorPropertyPtr *getMFProperties (void) const; 153 MFUnrecChildGeoVectorPropertyPtr *editMFProperties (void); 154 const MFUnrecChildGeoIntegralPropertyPtr *getMFPropIndices (void) const; 155 MFUnrecChildGeoIntegralPropertyPtr *editMFPropIndices (void); 152 156 153 157 … … 157 161 158 162 GeoVectorPropertyPtr getProperties (const UInt32 index) const; 159 const MFUnrecChildGeoVectorPropertyPtr &getProperties (void) const;160 163 161 164 GeoIntegralPropertyPtr getPropIndices (const UInt32 index) const; 162 const MFUnrecChildGeoIntegralPropertyPtr &getPropIndices (void) const;163 165 164 166 /*! \} */ … … 182 184 void pushToProperties (const GeoVectorPropertyPtr value ); 183 185 void assignProperties (const MFUnrecChildGeoVectorPropertyPtr &value); 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 186 void removeFromProperties (UInt32 uiIndex ); 191 187 void removeFromProperties(const GeoVectorPropertyPtr value ); … … 193 189 194 190 195 196 191 void pushToPropIndices (const GeoIntegralPropertyPtr value ); 197 192 void assignPropIndices (const MFUnrecChildGeoIntegralPropertyPtr &value); 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 193 void removeFromPropIndices (UInt32 uiIndex ); 205 194 void removeFromPropIndices(const GeoIntegralPropertyPtr value ); … … 317 306 318 307 319 #ifdef OSG_1_GET_COMPAT320 SFInt32 *getSFClassicGLId (void);321 #endif322 308 SFInt32 *editSFClassicGLId (void); 323 309 const SFInt32 *getSFClassicGLId (void) const; 324 310 325 #ifdef OSG_1_GET_COMPAT326 SFInt32 *getSFAttGLId (void);327 #endif328 311 SFInt32 *editSFAttGLId (void); 329 312 const SFInt32 *getSFAttGLId (void) const; 330 313 331 314 332 #ifdef OSG_1_GET_COMPAT333 Int32 &getClassicGLId (void);334 #endif335 315 Int32 &editClassicGLId (void); 336 const Int32 &getClassicGLId (void) const; 337 338 #ifdef OSG_1_GET_COMPAT 339 Int32 &getAttGLId (void); 340 #endif 316 const Int32 getClassicGLId (void) const; 317 341 318 Int32 &editAttGLId (void); 342 const Int32 &getAttGLId (void) const;319 const Int32 getAttGLId (void) const; 343 320 344 321 /*! \} */ … … 354 331 /*! \name Ptr MField Set */ 355 332 /*! \{ */ 333 356 334 /*! \} */ 357 335 /*---------------------------------------------------------------------*/
