- 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.cpp
r1161 r1178 384 384 385 385 386 void GeometryBase::pushToProperties( GeoVectorPropertyPtrConstArgvalue)386 void GeometryBase::pushToProperties(const GeoVectorPropertyPtr value) 387 387 { 388 388 editMField(PropertiesFieldMask, _mfProperties); … … 413 413 } 414 414 415 void GeometryBase::insertIntoProperties( UInt32uiIndex,416 GeoVectorPropertyPtrConstArgvalue )415 void GeometryBase::insertIntoProperties( UInt32 uiIndex, 416 const GeoVectorPropertyPtr value ) 417 417 { 418 418 editMField(PropertiesFieldMask, _mfProperties); … … 430 430 } 431 431 432 void GeometryBase::replaceInProperties( UInt32uiIndex,433 GeoVectorPropertyPtrConstArgvalue )432 void GeometryBase::replaceInProperties( UInt32 uiIndex, 433 const GeoVectorPropertyPtr value ) 434 434 { 435 435 if(uiIndex >= _mfProperties.size()) … … 450 450 } 451 451 452 void GeometryBase::replaceInProperties( GeoVectorPropertyPtrConstArgpOldElem,453 GeoVectorPropertyPtrConstArgpNewElem)452 void GeometryBase::replaceInProperties(const GeoVectorPropertyPtr pOldElem, 453 const GeoVectorPropertyPtr pNewElem) 454 454 { 455 455 Int32 elemIdx = _mfProperties.findIndex(pOldElem); … … 486 486 } 487 487 488 void GeometryBase::removeFromProperties( GeoVectorPropertyPtrConstArgvalue)488 void GeometryBase::removeFromProperties(const GeoVectorPropertyPtr value) 489 489 { 490 490 Int32 iElemIdx = _mfProperties.findIndex(value); … … 511 511 } 512 512 513 void GeometryBase::pushToPropIndices( GeoIntegralPropertyPtrConstArgvalue)513 void GeometryBase::pushToPropIndices(const GeoIntegralPropertyPtr value) 514 514 { 515 515 editMField(PropIndicesFieldMask, _mfPropIndices); … … 540 540 } 541 541 542 void GeometryBase::insertIntoPropIndices( UInt32uiIndex,543 GeoIntegralPropertyPtrConstArgvalue )542 void GeometryBase::insertIntoPropIndices( UInt32 uiIndex, 543 const GeoIntegralPropertyPtr value ) 544 544 { 545 545 editMField(PropIndicesFieldMask, _mfPropIndices); … … 557 557 } 558 558 559 void GeometryBase::replaceInPropIndices( UInt32uiIndex,560 GeoIntegralPropertyPtrConstArgvalue )559 void GeometryBase::replaceInPropIndices( UInt32 uiIndex, 560 const GeoIntegralPropertyPtr value ) 561 561 { 562 562 if(uiIndex >= _mfPropIndices.size()) … … 577 577 } 578 578 579 void GeometryBase::replaceInPropIndices( GeoIntegralPropertyPtrConstArgpOldElem,580 GeoIntegralPropertyPtrConstArgpNewElem)579 void GeometryBase::replaceInPropIndices(const GeoIntegralPropertyPtr pOldElem, 580 const GeoIntegralPropertyPtr pNewElem) 581 581 { 582 582 Int32 elemIdx = _mfPropIndices.findIndex(pOldElem); … … 613 613 } 614 614 615 void GeometryBase::removeFromPropIndices( GeoIntegralPropertyPtrConstArgvalue)615 void GeometryBase::removeFromPropIndices(const GeoIntegralPropertyPtr value) 616 616 { 617 617 Int32 iElemIdx = _mfPropIndices.findIndex(value);
