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. {
  12. public:
  13. Cmyfirst()
  14. {
  15. }
  16. DECLARE_REGISTRY_RESOURCEID(IDR_MYFIRST)
  17. DECLARE_PROTECT_FINAL_CONSTRUCT()
  18. BEGIN_COM_MAP(Cmyfirst)
  19. COM_INTERFACE_ENTRY(Imyfirst)
  20. END_COM_MAP()
  21. // Imyfirst
  22. public:
  23. STDMETHOD(sub)(/*[in]*/ int a,/*[in]*/ int b,/*[in]*/ int* c);
  24. STDMETHOD(add)(/*[in]*/ int a,/*[in]*/ int b,/*[out]*/ int* c);
  25. };
  26. #endif //__MYFIRST_H_