- Timestamp:
- 05/05/08 06:39:01 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/NodeCores/Drawables/Geometry/Base/WS/OSGGeometryBase.h
r1185 r1193 150 150 /*! \{ */ 151 151 152 const SFUnrecChildGeoIntegralPropertyPtr *getSFTypes (void) const; 153 const SFUnrecChildGeoIntegralPropertyPtr *getSFLengths (void) const; 154 const MFUnrecChildGeoVectorPropertyPtr *getMFProperties (void) const; 155 const MFUnrecChildGeoIntegralPropertyPtr *getMFPropIndices (void) const; 152 const SFUnrecChildGeoIntegralPropertyPtr *getSFTypes (void) const; 153 SFUnrecChildGeoIntegralPropertyPtr *editSFTypes (void); 154 const SFUnrecChildGeoIntegralPropertyPtr *getSFLengths (void) const; 155 SFUnrecChildGeoIntegralPropertyPtr *editSFLengths (void); 156 const MFUnrecChildGeoVectorPropertyPtr *getMFProperties (void) const; 157 MFUnrecChildGeoVectorPropertyPtr *editMFProperties (void); 158 const MFUnrecChildGeoIntegralPropertyPtr *getMFPropIndices (void) const; 159 MFUnrecChildGeoIntegralPropertyPtr *editMFPropIndices (void); 156 160 157 161 #ifdef OSG_1_GET_COMPAT … … 167 171 168 172 GeoVectorPropertyPtr getProperties (const UInt32 index) const; 169 const MFUnrecChildGeoVectorPropertyPtr &getProperties (void) const;170 173 171 174 GeoIntegralPropertyPtr getPropIndices (const UInt32 index) const; 172 const MFUnrecChildGeoIntegralPropertyPtr &getPropIndices (void) const;173 175 174 176 #ifdef OSG_1_GET_COMPAT … … 176 178 #endif 177 179 bool &editDlistCache (void); 178 const bool &getDlistCache (void) const;180 const bool getDlistCache (void) const; 179 181 180 182 /*! \} */ … … 199 201 void pushToProperties (const GeoVectorPropertyPtr value ); 200 202 void assignProperties (const MFUnrecChildGeoVectorPropertyPtr &value); 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 203 void removeFromProperties (UInt32 uiIndex ); 208 204 void removeFromProperties(const GeoVectorPropertyPtr value ); … … 210 206 211 207 212 213 208 void pushToPropIndices (const GeoIntegralPropertyPtr value ); 214 209 void assignPropIndices (const MFUnrecChildGeoIntegralPropertyPtr &value); 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 210 void removeFromPropIndices (UInt32 uiIndex ); 222 211 void removeFromPropIndices(const GeoIntegralPropertyPtr value ); … … 337 326 338 327 339 #ifdef OSG_1_GET_COMPAT340 SFInt32 *getSFClassicGLId (void);341 #endif342 328 SFInt32 *editSFClassicGLId (void); 343 329 const SFInt32 *getSFClassicGLId (void) const; 344 330 345 #ifdef OSG_1_GET_COMPAT346 SFInt32 *getSFAttGLId (void);347 #endif348 331 SFInt32 *editSFAttGLId (void); 349 332 const SFInt32 *getSFAttGLId (void) const; 350 333 351 334 352 #ifdef OSG_1_GET_COMPAT353 Int32 &getClassicGLId (void);354 #endif355 335 Int32 &editClassicGLId (void); 356 const Int32 &getClassicGLId (void) const; 357 358 #ifdef OSG_1_GET_COMPAT 359 Int32 &getAttGLId (void); 360 #endif 336 const Int32 getClassicGLId (void) const; 337 361 338 Int32 &editAttGLId (void); 362 const Int32 &getAttGLId (void) const;339 const Int32 getAttGLId (void) const; 363 340 364 341 /*! \} */ … … 374 351 /*! \name Ptr MField Set */ 375 352 /*! \{ */ 353 376 354 /*! \} */ 377 355 /*---------------------------------------------------------------------*/
