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

Windows编程

开发平台:

Visual C++

  1. // AutoAggB.h : Declaration of the CAutoAggB
  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. #include "aggres.h"       // main symbols
  13. /////////////////////////////////////////////////////////////////////////////
  14. // Aggreg
  15. class CAutoAggB :
  16. public IDispatchImpl<IAutoAggB, &IID_IAutoAggB, &LIBID_AGGREGLib>,
  17. public ISupportErrorInfo,
  18. public CComObjectRoot,
  19. public CComCoClass<CAutoAggB,&CLSID_CAutoAggB>
  20. {
  21. public:
  22. CAutoAggB(){}
  23. BEGIN_COM_MAP(CAutoAggB)
  24. COM_INTERFACE_ENTRY(IDispatch)
  25. COM_INTERFACE_ENTRY(IAutoAggB)
  26. COM_INTERFACE_ENTRY(ISupportErrorInfo)
  27. END_COM_MAP()
  28. //DECLARE_NOT_AGGREGATABLE(CAutoAggB)
  29. // Remove the comment from the line above if you don't want your object to
  30. // support aggregation.  The default is to support it
  31. DECLARE_REGISTRY_RESOURCEID(IDR_AutoAggB)
  32. // ISupportsErrorInfo
  33. STDMETHOD(InterfaceSupportsErrorInfo)(REFIID riid);
  34. // IAutoAggB
  35. public:
  36. STDMETHOD(get_Name)(BSTR* pbstrName);
  37. };