- Timestamp:
- 04/18/08 04:10:31 (7 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/NodeCores/Drawables/Geometry/Base/WS/OSGGeometryBase.cpp
r1161 r1178 433 433 434 434 435 void GeometryBase::pushToProperties( GeoVectorPropertyPtrConstArgvalue)435 void GeometryBase::pushToProperties(const GeoVectorPropertyPtr value) 436 436 { 437 437 editMField(PropertiesFieldMask, _mfProperties); … … 462 462 } 463 463 464 void GeometryBase::insertIntoProperties( UInt32uiIndex,465 GeoVectorPropertyPtrConstArgvalue )464 void GeometryBase::insertIntoProperties( UInt32 uiIndex, 465 const GeoVectorPropertyPtr value ) 466 466 { 467 467 editMField(PropertiesFieldMask, _mfProperties); … … 479 479 } 480 480 481 void GeometryBase::replaceInProperties( UInt32uiIndex,482 GeoVectorPropertyPtrConstArgvalue )481 void GeometryBase::replaceInProperties( UInt32 uiIndex, 482 const GeoVectorPropertyPtr value ) 483 483 { 484 484 if(uiIndex >= _mfProperties.size()) … … 499 499 } 500 500 501 void GeometryBase::replaceInProperties( GeoVectorPropertyPtrConstArgpOldElem,502 GeoVectorPropertyPtrConstArgpNewElem)501 void GeometryBase::replaceInProperties(const GeoVectorPropertyPtr pOldElem, 502 const GeoVectorPropertyPtr pNewElem) 503 503 { 504 504 Int32 elemIdx = _mfProperties.findIndex(pOldElem); … … 535 535 } 536 536 537 void GeometryBase::removeFromProperties( GeoVectorPropertyPtrConstArgvalue)537 void GeometryBase::removeFromProperties(const GeoVectorPropertyPtr value) 538 538 { 539 539 Int32 iElemIdx = _mfProperties.findIndex(value); … … 560 560 } 561 561 562 void GeometryBase::pushToPropIndices( GeoIntegralPropertyPtrConstArgvalue)562 void GeometryBase::pushToPropIndices(const GeoIntegralPropertyPtr value) 563 563 { 564 564 editMField(PropIndicesFieldMask, _mfPropIndices); … … 589 589 } 590 590 591 void GeometryBase::insertIntoPropIndices( UInt32uiIndex,592 GeoIntegralPropertyPtrConstArgvalue )591 void GeometryBase::insertIntoPropIndices( UInt32 uiIndex, 592 const GeoIntegralPropertyPtr value ) 593 593 { 594 594 editMField(PropIndicesFieldMask, _mfPropIndices); … … 606 606 } 607 607 608 void GeometryBase::replaceInPropIndices( UInt32uiIndex,609 GeoIntegralPropertyPtrConstArgvalue )608 void GeometryBase::replaceInPropIndices( UInt32 uiIndex, 609 const GeoIntegralPropertyPtr value ) 610 610 { 611 611 if(uiIndex >= _mfPropIndices.size()) … … 626 626 } 627 627 628 void GeometryBase::replaceInPropIndices( GeoIntegralPropertyPtrConstArgpOldElem,629 GeoIntegralPropertyPtrConstArgpNewElem)628 void GeometryBase::replaceInPropIndices(const GeoIntegralPropertyPtr pOldElem, 629 const GeoIntegralPropertyPtr pNewElem) 630 630 { 631 631 Int32 elemIdx = _mfPropIndices.findIndex(pOldElem); … … 662 662 } 663 663 664 void GeometryBase::removeFromPropIndices( GeoIntegralPropertyPtrConstArgvalue)664 void GeometryBase::removeFromPropIndices(const GeoIntegralPropertyPtr value) 665 665 { 666 666 Int32 iElemIdx = _mfPropIndices.findIndex(value);
