Show
Ignore:
Timestamp:
04/18/08 04:10:31 (8 months ago)
Author:
vossg
Message:

changed: pointer cleanup base rebuild

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/System/NodeCores/Drawables/Geometry/Base/ES/OSGGeometryBase.cpp

    r1161 r1178  
    384384 
    385385 
    386 void GeometryBase::pushToProperties(GeoVectorPropertyPtrConstArg value) 
     386void GeometryBase::pushToProperties(const GeoVectorPropertyPtr value) 
    387387{ 
    388388    editMField(PropertiesFieldMask, _mfProperties); 
     
    413413} 
    414414 
    415 void GeometryBase::insertIntoProperties(UInt32                uiIndex, 
    416                                                    GeoVectorPropertyPtrConstArg value   ) 
     415void GeometryBase::insertIntoProperties(      UInt32         uiIndex, 
     416                                                   const GeoVectorPropertyPtr value   ) 
    417417{ 
    418418    editMField(PropertiesFieldMask, _mfProperties); 
     
    430430} 
    431431 
    432 void GeometryBase::replaceInProperties(UInt32                uiIndex, 
    433                                                        GeoVectorPropertyPtrConstArg value   ) 
     432void GeometryBase::replaceInProperties(      UInt32         uiIndex, 
     433                                                       const GeoVectorPropertyPtr value   ) 
    434434{ 
    435435    if(uiIndex >= _mfProperties.size()) 
     
    450450} 
    451451 
    452 void GeometryBase::replaceInProperties(GeoVectorPropertyPtrConstArg pOldElem, 
    453                                                         GeoVectorPropertyPtrConstArg pNewElem) 
     452void GeometryBase::replaceInProperties(const GeoVectorPropertyPtr pOldElem, 
     453                                                        const GeoVectorPropertyPtr pNewElem) 
    454454{ 
    455455    Int32  elemIdx = _mfProperties.findIndex(pOldElem); 
     
    486486} 
    487487 
    488 void GeometryBase::removeFromProperties(GeoVectorPropertyPtrConstArg value) 
     488void GeometryBase::removeFromProperties(const GeoVectorPropertyPtr value) 
    489489{ 
    490490    Int32 iElemIdx = _mfProperties.findIndex(value); 
     
    511511} 
    512512 
    513 void GeometryBase::pushToPropIndices(GeoIntegralPropertyPtrConstArg value) 
     513void GeometryBase::pushToPropIndices(const GeoIntegralPropertyPtr value) 
    514514{ 
    515515    editMField(PropIndicesFieldMask, _mfPropIndices); 
     
    540540} 
    541541 
    542 void GeometryBase::insertIntoPropIndices(UInt32                uiIndex, 
    543                                                    GeoIntegralPropertyPtrConstArg value   ) 
     542void GeometryBase::insertIntoPropIndices(      UInt32         uiIndex, 
     543                                                   const GeoIntegralPropertyPtr value   ) 
    544544{ 
    545545    editMField(PropIndicesFieldMask, _mfPropIndices); 
     
    557557} 
    558558 
    559 void GeometryBase::replaceInPropIndices(UInt32                uiIndex, 
    560                                                        GeoIntegralPropertyPtrConstArg value   ) 
     559void GeometryBase::replaceInPropIndices(      UInt32         uiIndex, 
     560                                                       const GeoIntegralPropertyPtr value   ) 
    561561{ 
    562562    if(uiIndex >= _mfPropIndices.size()) 
     
    577577} 
    578578 
    579 void GeometryBase::replaceInPropIndices(GeoIntegralPropertyPtrConstArg pOldElem, 
    580                                                         GeoIntegralPropertyPtrConstArg pNewElem) 
     579void GeometryBase::replaceInPropIndices(const GeoIntegralPropertyPtr pOldElem, 
     580                                                        const GeoIntegralPropertyPtr pNewElem) 
    581581{ 
    582582    Int32  elemIdx = _mfPropIndices.findIndex(pOldElem); 
     
    613613} 
    614614 
    615 void GeometryBase::removeFromPropIndices(GeoIntegralPropertyPtrConstArg value) 
     615void GeometryBase::removeFromPropIndices(const GeoIntegralPropertyPtr value) 
    616616{ 
    617617    Int32 iElemIdx = _mfPropIndices.findIndex(value);