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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // MyTools.cpp: implementation of the CMyTools class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "TestCom1.h"
  6. #include "MyTools.h"
  7. //////////////////////////////////////////////////////////////////////
  8. // Construction/Destruction
  9. //////////////////////////////////////////////////////////////////////
  10. CMyTools::CMyTools()
  11. {
  12. }
  13. CMyTools::~CMyTools()
  14. {
  15. }
  16. STDMETHODIMP CMyTools::add(int a, int b, int* c)
  17. {
  18. *c=a+b;
  19. return S_OK;
  20. }