ICLASSF.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * ICLASSF.H
  3.  *
  4.  * Definitions for a template Class Factory object with the
  5.  * IClassFactory interface.
  6.  *
  7.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  8.  *
  9.  * Kraig Brockschmidt, Microsoft
  10.  * Internet  :  kraigb@microsoft.com
  11.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  12.  */
  13. #ifndef _ICLASSF_H_
  14. #define _ICLASSF_H_
  15. #include <inole.h>
  16. class CClassFactory;
  17. typedef class CClassFactory *PCClassFactory;
  18. class CClassFactory : public IClassFactory
  19.     {
  20.     protected:
  21.         ULONG           m_cRef;         //Reference count on object
  22.     public:
  23.         CClassFactory(void);
  24.         ~CClassFactory(void);
  25.         //IUnknown interface members
  26.         STDMETHODIMP QueryInterface(REFIID, LPVOID *);
  27.         STDMETHODIMP_(ULONG) AddRef(void);
  28.         STDMETHODIMP_(ULONG) Release(void);
  29.         //IClassFactory members
  30.         STDMETHODIMP CreateInstance(LPUNKNOWN, REFIID, LPVOID *);
  31.         STDMETHODIMP LockServer(BOOL);
  32.     };
  33. #endif //_ICLASSF_H_