chxmakesmartptr.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:1k
- /************************************************************************
- * chxmakesmartptr.h
- * -------------------
- * Easy way of making smart pointers.
- *
- * Target:
- * Symbian OS
- *
- *
- * (c) 1995-2003 RealNetworks, Inc. Patents pending. All rights reserved.
- *
- ************************************************************************/
- // Includes...
- #include "chxsmartptr.h"
- #ifndef _chxmakesmartptr_h_
- #define _chxmakesmartptr_h_
- #define MakeSmartPtr(T)
- class T ## Ptr : public CHXSmartPtr<T> {
- public:
- T ## Ptr(T* p=(T*)0)
- : CHXSmartPtr<T>(p) {}
- T ## Ptr(const T ## Ptr& p)
- : CHXSmartPtr<T>(p)
- {}
- T ## Ptr& operator=(T* p)
- {
- (void) CHXSmartPtr<T>::operator=(p);
- return *this;
- }
- };
- #define MakeSmartCPtr(T)
- class T ## CPtr : public CHXSmartCPtr<T> {
- public:
- T ## CPtr(const T* p=(const T*)0)
- : CHXSmartCPtr<T>(p) {}
- T ## CPtr(const T ## CPtr& p)
- : CHXSmartCPtr<T>(p)
- {}
- T ## CPtr& operator=(const T* p)
- {
- (void) CHXSmartCPtr<T>::operator=(p);
- return *this;
- }
- };
- #endif // _chxmakesmartptr_h_