Myfirst.h
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:1k
源码类别:

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // Myfirst.h : Declaration of the CMyfirst
  2. #ifndef __MYFIRST_H_
  3. #define __MYFIRST_H_
  4. #include "resource.h"       // main symbols
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CMyfirst
  7. class ATL_NO_VTABLE CMyfirst : 
  8. public CComObjectRootEx<CComSingleThreadModel>,
  9. public CComCoClass<CMyfirst, &CLSID_Myfirst>,
  10. public IMyfirst,
  11. public IHello
  12. {
  13. public:
  14. CMyfirst()
  15. {
  16. }
  17. DECLARE_REGISTRY_RESOURCEID(IDR_MYFIRST)
  18. DECLARE_PROTECT_FINAL_CONSTRUCT()
  19. BEGIN_COM_MAP(CMyfirst)
  20. COM_INTERFACE_ENTRY(IMyfirst)
  21. COM_INTERFACE_ENTRY(IHello)
  22. END_COM_MAP()
  23. // IMyfirst
  24. public:
  25. STDMETHOD(add)(/*[in]*/ int a, /*[in]*/ int b, /*[out]*/ int* c);
  26. STDMETHOD(sub)(/*[in]*/ int a, /*[in]*/ int b, /*[out]*/ int* c);
  27. STDMETHOD(hello)(BSTR name, BSTR* result);
  28. };
  29. #endif //__MYFIRST_H_