MyTools.cpp
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:1k
- // MyTools.cpp: implementation of the CMyTools class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "TestCom1.h"
- #include "MyTools.h"
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- CMyTools::CMyTools()
- {
- }
- CMyTools::~CMyTools()
- {
- }
- STDMETHODIMP CMyTools::add(int a, int b, int* c)
- {
- *c=a+b;
- return S_OK;
- }