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

Windows编程

开发平台:

Visual C++

  1. // AutoAgg.h : Declaration of the CAutoAgg
  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 CAutoAgg :
  16. public IDispatchImpl<IAutoAgg, &IID_IAutoAgg, &LIBID_AGGREGLib>,
  17. public ISupportErrorInfo,
  18. public CComObjectRoot,
  19. public CComCoClass<CAutoAgg,&CLSID_CAutoAgg>
  20. {
  21. public:
  22. CAutoAgg(){}
  23. BEGIN_COM_MAP(CAutoAgg)
  24. COM_INTERFACE_ENTRY(IDispatch)
  25. COM_INTERFACE_ENTRY(IAutoAgg)
  26. COM_INTERFACE_ENTRY(ISupportErrorInfo)
  27. END_COM_MAP()
  28. //DECLARE_NOT_AGGREGATABLE(CAutoAgg)
  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_AutoAgg)
  32. // ISupportsErrorInfo
  33. STDMETHOD(InterfaceSupportsErrorInfo)(REFIID riid);
  34. // IAutoAgg
  35. public:
  36. STDMETHOD(get_Name)(BSTR* pbstrName);
  37. };