- Timestamp:
- 10/20/07 18:11:52 (10 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork/Source/System/Cluster/Window/Base/OSGClusterWindowBase.h
r965 r976 325 325 /*! \{ */ 326 326 327 SFWindow Ptr const *getSFClientWindow(void) const;327 SFWindowInternalRefPtr const *getSFClientWindow(void) const; 328 328 WindowPtrConst getClientWindow(void) const; 329 329 … … 369 369 /*! \{ */ 370 370 371 SFImageComposer Ptr const *getSFComposer(void) const;371 SFImageComposerInternalRefPtr const *getSFComposer(void) const; 372 372 ImageComposerPtrConst getComposer(void) const; 373 373 … … 440 440 static TypeObject _type; 441 441 442 static void classDescInserter(TypeObject &oType);443 static Char8 *getClassname (void );442 static void classDescInserter(TypeObject &oType); 443 static Char8 const *getClassname (void ); 444 444 445 445 /*---------------------------------------------------------------------*/ … … 455 455 SFString _sfServiceAddress; 456 456 SFString _sfServiceInterface; 457 SFWindow Ptr_sfClientWindow;457 SFWindowInternalRefPtr _sfClientWindow; 458 458 SFUInt32 _sfInterleave; 459 459 SFUInt32 _sfFrameCount; 460 SFImageComposer Ptr _sfComposer;460 SFImageComposerInternalRefPtr _sfComposer; 461 461 MFString _mfAutostart; 462 462 … … 560 560 typedef ClusterWindowBase *ClusterWindowBaseP; 561 561 562 /** Type specific RefPtr type for ClusterWindow. */ 563 typedef RefPtr<ClusterWindow> ClusterWindowRefPtr; 564 typedef MTRefPtr<ClusterWindow> ClusterWindowMTRefPtr; 565 566 typedef InternalRefPtr<ClusterWindow> ClusterWindowInternalRefPtr; 567 typedef InternalRefPtr<ClusterWindow> const ClusterWindowInternalRefPtrConst; 568 typedef InternalRefPtr<ClusterWindow> const ClusterWindowInternalRefPtrConstArg; 562 typedef RefCountPtrBuilder<ClusterWindow>::Ptr ClusterWindowRefPtr; 563 typedef MTRefCountPtrBuilder<ClusterWindow>::Ptr ClusterWindowMTRefPtr; 564 typedef WeakRefCountPtrBuilder<ClusterWindow>::Ptr ClusterWindowWeakRefPtr; 565 typedef InternalRefCountPtrBuilder<ClusterWindow>::Ptr ClusterWindowInternalRefPtr; 566 567 typedef ParentPtrBuilder<ClusterWindow>::Ptr ClusterWindowParentPtr; 569 568 570 569 typedef boost::mpl::if_<
