home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / atl / commap / chain.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  1KB  |  51 lines

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