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

Windows编程

开发平台:

Visual C++

  1. // Chain.h : Declaration of the CChain
  2. //
  3. // This is a part of the ActiveX Template Library.
  4. // Copyright (C) 1996 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // ActiveX Template Library Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // ActiveX Template Library product.
  12. #include "mapres.h"       // main symbols
  13. /////////////////////////////////////////////////////////////////////////////
  14. // COMMap
  15. class CChainBase : 
  16.     public CComDualImpl<IChain, &__uuidof(IChain), &LIBID_COMMAPLib>, 
  17.     public ISupportErrorInfo,
  18.     public CComObjectRoot
  19. {
  20. public:
  21.     CChainBase(){}
  22.     ~CChainBase(){}
  23. BEGIN_COM_MAP(CChainBase)
  24.     COM_INTERFACE_ENTRY(IDispatch)
  25.     COM_INTERFACE_ENTRY(IChain)
  26.     COM_INTERFACE_ENTRY(ISupportErrorInfo)
  27. END_COM_MAP()
  28. // ISupportsErrorInfo
  29.     STDMETHOD(InterfaceSupportsErrorInfo)(REFIID riid);
  30. // IChain
  31. public:
  32.     STDMETHOD(get_Name2)(BSTR* pbstrName);
  33. };
  34. class CChain : 
  35.     public CChainBase,
  36.     public CComCoClass<CChain,&__uuidof(CoChain)>
  37. {
  38. public:
  39. //DECLARE_NOT_AGGREGATABLE(CChainBase) 
  40. // Remove the comment from the line above if you don't want your object to 
  41. // support aggregation.  The default is to support it
  42. DECLARE_REGISTRY_RESOURCEID(IDR_Chain)
  43. };