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

Windows编程

开发平台:

Visual C++

  1. // Agg.h : Declaration of the CAgg
  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 "aggres.h"       // main symbols
  13. /////////////////////////////////////////////////////////////////////////////
  14. // Aggreg
  15. class CAgg : 
  16.     public CComDualImpl<IAgg, &__uuidof(IAgg), &LIBID_AGGREGLib>, 
  17.     public ISupportErrorInfo,
  18.     public CComObjectRoot,
  19.     public CComCoClass<CAgg,&__uuidof(CoAgg)>
  20. {
  21. public:
  22.     CAgg(){}
  23. BEGIN_COM_MAP(CAgg)
  24.     COM_INTERFACE_ENTRY(IDispatch)
  25.     COM_INTERFACE_ENTRY(IAgg)
  26.     COM_INTERFACE_ENTRY(ISupportErrorInfo)
  27. END_COM_MAP()
  28. //DECLARE_NOT_AGGREGATABLE(CAgg) 
  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_Agg)
  32. // ISupportsErrorInfo
  33.     STDMETHOD(InterfaceSupportsErrorInfo)(REFIID riid);
  34. // IAgg
  35. public:
  36.     STDMETHOD(get_Name)(BSTR* pbstrName);
  37. };