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

Windows编程

开发平台:

Visual C++

  1. //**********************************************************************
  2. // File name: icf.h
  3. //
  4. //      Definition of CClassFactory
  5. //
  6. // Copyright (c) 1993-1997 Microsoft Corporation. All rights reserved.
  7. //**********************************************************************
  8. #if !defined( _ICF_H_)
  9. #define _ICF_H_
  10. class CSimpSvrApp;
  11. interface CClassFactory :  IClassFactory
  12. {
  13. private:
  14. int m_nCount;               // reference count
  15. CSimpSvrApp FAR * m_lpApp;
  16. public:
  17. CClassFactory::CClassFactory(CSimpSvrApp FAR * lpApp)
  18. {
  19. OutputDebugString("In CClassFactory's Constructorrn");
  20. m_lpApp = lpApp;
  21. m_nCount = 0;
  22. };
  23. CClassFactory::~CClassFactory()
  24.    {
  25.    OutputDebugString("In CClassFactory's Destructorrn");
  26.    };
  27. // IUnknown Methods
  28. STDMETHODIMP QueryInterface (REFIID riid, LPVOID FAR* ppvObj);
  29. STDMETHODIMP_(ULONG) AddRef ();
  30. STDMETHODIMP_(ULONG) Release ();
  31. STDMETHODIMP CreateInstance (LPUNKNOWN pUnkOuter,
  32.   REFIID riid,
  33.   LPVOID FAR* ppvObject);
  34. STDMETHODIMP LockServer ( BOOL fLock);
  35. };
  36. #endif