MyAbc.cpp
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:1k
- // MyAbc.cpp : Implementation of CMyAbc
- #include "stdafx.h"
- #include "ComCallBack.h"
- #include "MyAbc.h"
- /////////////////////////////////////////////////////////////////////////////
- // CMyAbc
- //设置属性
- STDMETHODIMP CMyAbc::SetLog(ILogs* ptools)
- {
- this->pTools=ptools;
- return S_OK;
- }
- STDMETHODIMP CMyAbc::add(int a, int b,int* c)
- {
- *c=a+b;
- CComBSTR bstr("this result is:");
- char strTemp[500];
- sprintf(strTemp,"%d",c);
- bstr.Append(strTemp);
- if(this->pTools!=NULL)//回调要点
- {
- this->pTools->WriteLog(bstr);//另一个接口的实现函数
- }
- return S_OK;
- }