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

changed: pointer cleanup base rebuild

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/System/Material/Base/OSGChunkMaterialBase.h

    r1116 r1178  
    223223 
    224224 
    225                   StateChunkPtrConst getChunks         (const UInt32 index) const; 
     225                  StateChunkPtr getChunks         (const UInt32 index) const; 
    226226            const MFUnrecStateChunkPtr &getChunks          (void) const; 
    227227 
     
    246246    /*! \{                                                                 */ 
    247247 
    248     void pushToChunks              (StateChunkPtrConstArg value   ); 
     248    void pushToChunks              (const StateChunkPtr value   ); 
    249249    void assignChunks              (const MFUnrecStateChunkPtr &value); 
    250     void insertIntoChunks      (UInt32                uiIndex, 
    251                                              StateChunkPtrConstArg value   ); 
    252     void replaceInChunks  (UInt32                uiIndex, 
    253                                              StateChunkPtrConstArg value   ); 
    254     void replaceInChunks (StateChunkPtrConstArg pOldElem, 
    255                                              StateChunkPtrConstArg pNewElem); 
     250    void insertIntoChunks      (      UInt32        uiIndex, 
     251                                             const StateChunkPtr value   ); 
     252    void replaceInChunks  (      UInt32         uiIndex, 
     253                                             const StateChunkPtr value   ); 
     254    void replaceInChunks (const StateChunkPtr pOldElem, 
     255                                             const StateChunkPtr pNewElem); 
    256256    void removeFromChunks (UInt32                uiIndex ); 
    257     void removeFromChunks(StateChunkPtrConstArg value   ); 
     257    void removeFromChunks(const StateChunkPtr value   ); 
    258258    void clearChunks                (void                          ); 
    259259