Changeset 976 for branches/Carsten_PtrWork/Source/System/Cluster/Window/SortLast/OSGSortLastWindowBase.h
- Timestamp:
- 10/20/07 18:11:52 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork/Source/System/Cluster/Window/SortLast/OSGSortLastWindowBase.h
r965 r976 133 133 /*! \{ */ 134 134 135 MFNode Ptr const *getMFGroupNodes(void) const;136 MFNode Ptr const &getGroupNodes (void) const;135 MFNodeInternalRefPtr const *getMFGroupNodes(void) const; 136 MFNodeInternalRefPtr const &getGroupNodes (void) const; 137 137 NodePtrConst getGroupNodes(UInt32 const index) const; 138 138 139 139 void addGroupNodes(NodePtrConstArg value); 140 void assignGroupNodes(MFNode Ptr const &value);140 void assignGroupNodes(MFNodeInternalRefPtr const &value); 141 141 void insertGroupNodes( 142 142 UInt32 const uiIndex, … … 235 235 static TypeObject _type; 236 236 237 static void classDescInserter(TypeObject &oType);238 static Char8 *getClassname (void );237 static void classDescInserter(TypeObject &oType); 238 static Char8 const *getClassname (void ); 239 239 240 240 /*---------------------------------------------------------------------*/ … … 242 242 /*! \{ */ 243 243 244 MFNode Ptr_mfGroupNodes;244 MFNodeInternalRefPtr _mfGroupNodes; 245 245 MFUInt32 _mfGroupLengths; 246 246 SFBool _sfGroupsChanged; … … 325 325 typedef SortLastWindowBase *SortLastWindowBaseP; 326 326 327 /** Type specific RefPtr type for SortLastWindow. */ 328 typedef RefPtr<SortLastWindow> SortLastWindowRefPtr; 329 typedef MTRefPtr<SortLastWindow> SortLastWindowMTRefPtr; 330 331 typedef InternalRefPtr<SortLastWindow> SortLastWindowInternalRefPtr; 332 typedef InternalRefPtr<SortLastWindow> const SortLastWindowInternalRefPtrConst; 333 typedef InternalRefPtr<SortLastWindow> const SortLastWindowInternalRefPtrConstArg; 327 typedef RefCountPtrBuilder<SortLastWindow>::Ptr SortLastWindowRefPtr; 328 typedef MTRefCountPtrBuilder<SortLastWindow>::Ptr SortLastWindowMTRefPtr; 329 typedef WeakRefCountPtrBuilder<SortLastWindow>::Ptr SortLastWindowWeakRefPtr; 330 typedef InternalRefCountPtrBuilder<SortLastWindow>::Ptr SortLastWindowInternalRefPtr; 331 332 typedef ParentPtrBuilder<SortLastWindow>::Ptr SortLastWindowParentPtr; 334 333 335 334 typedef boost::mpl::if_<
