refcount.hpp
资源名称:shell.rar [点击查看]
上传用户:xhy777
上传日期:2007-02-14
资源大小:24088k
文件大小:1k
源码类别:
系统编程
开发平台:
Visual C++
- /*
- * refcount.hpp - RefCount class description.
- */
- /* Types
- ********/
- /* Classes
- **********/
- class RefCount
- {
- private:
- ULONG m_ulcRef;
- public:
- RefCount(void);
- // Virtual destructor defers to destructor of derived class.
- virtual ~RefCount(void);
- // IUnknown methods
- ULONG STDMETHODCALLTYPE AddRef(void);
- ULONG STDMETHODCALLTYPE Release(void);
- // friends
- #ifdef DEBUG
- friend BOOL IsValidPCRefCount(const RefCount *pcrefcnt);
- #endif
- };
- DECLARE_STANDARD_TYPES(RefCount);
English
