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.h

    r1161 r1178  
    152152 
    153153 
    154                   GeoIntegralPropertyPtrConst getTypes          (void) const; 
    155  
    156                   GeoIntegralPropertyPtrConst getLengths        (void) const; 
    157  
    158                   GeoVectorPropertyPtrConst getProperties     (const UInt32 index) const; 
     154                  GeoIntegralPropertyPtr getTypes          (void) const; 
     155 
     156                  GeoIntegralPropertyPtr getLengths        (void) const; 
     157 
     158                  GeoVectorPropertyPtr getProperties     (const UInt32 index) const; 
    159159            const MFUnrecChildGeoVectorPropertyPtr &getProperties     (void) const; 
    160160 
    161                   GeoIntegralPropertyPtrConst getPropIndices    (const UInt32 index) const; 
     161                  GeoIntegralPropertyPtr getPropIndices    (const UInt32 index) const; 
    162162            const MFUnrecChildGeoIntegralPropertyPtr &getPropIndices    (void) const; 
    163163 
     
    167167    /*! \{                                                                 */ 
    168168 
    169             void setTypes          (GeoIntegralPropertyPtrConstArg value); 
    170             void setLengths        (GeoIntegralPropertyPtrConstArg value); 
     169            void setTypes          (const GeoIntegralPropertyPtr value); 
     170            void setLengths        (const GeoIntegralPropertyPtr value); 
    171171 
    172172    /*! \}                                                                 */ 
     
    180180    /*! \{                                                                 */ 
    181181 
    182     void pushToProperties           (GeoVectorPropertyPtrConstArg value   ); 
     182    void pushToProperties           (const GeoVectorPropertyPtr value   ); 
    183183    void assignProperties           (const MFUnrecChildGeoVectorPropertyPtr &value); 
    184     void insertIntoProperties      (UInt32                uiIndex, 
    185                                              GeoVectorPropertyPtrConstArg value   ); 
    186     void replaceInProperties  (UInt32                uiIndex, 
    187                                              GeoVectorPropertyPtrConstArg value   ); 
    188     void replaceInProperties (GeoVectorPropertyPtrConstArg pOldElem, 
    189                                              GeoVectorPropertyPtrConstArg pNewElem); 
     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); 
    190190    void removeFromProperties (UInt32                uiIndex ); 
    191     void removeFromProperties(GeoVectorPropertyPtrConstArg value   ); 
     191    void removeFromProperties(const GeoVectorPropertyPtr value   ); 
    192192    void clearProperties            (void                          ); 
    193193 
    194194 
    195195 
    196     void pushToPropIndices           (GeoIntegralPropertyPtrConstArg value   ); 
     196    void pushToPropIndices           (const GeoIntegralPropertyPtr value   ); 
    197197    void assignPropIndices           (const MFUnrecChildGeoIntegralPropertyPtr &value); 
    198     void insertIntoPropIndices      (UInt32                uiIndex, 
    199                                              GeoIntegralPropertyPtrConstArg value   ); 
    200     void replaceInPropIndices  (UInt32                uiIndex, 
    201                                              GeoIntegralPropertyPtrConstArg value   ); 
    202     void replaceInPropIndices (GeoIntegralPropertyPtrConstArg pOldElem, 
    203                                              GeoIntegralPropertyPtrConstArg pNewElem); 
     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); 
    204204    void removeFromPropIndices (UInt32                uiIndex ); 
    205     void removeFromPropIndices(GeoIntegralPropertyPtrConstArg value   ); 
     205    void removeFromPropIndices(const GeoIntegralPropertyPtr value   ); 
    206206    void clearPropIndices            (void                          ); 
    207207