12345678910111213141516171819202122232425262728 |
- // mod_BranchDevice.cpp : 定义 DLL 应用程序的导出函数。
- //
- #include "stdafx.h"
- #include "mod_BranchDevice.h"
- void CBranchDeviceServerSession::Handle_OpCmd(SpReqAnsContext<BranchDeviceService_OpCmd_Req,
- BranchDeviceService_OpCmd_Ans>::Pointer ctx)
- {
- LOG_FUNCTION();
- m_pEntity->OpenCMD(ctx);
- }
- void CBranchDeviceServerSession::Handle_Exit(SpOnewayCallContext<BranchDeviceService_Exit_Info>::Pointer ctx)
- {
- //LOG_FUNCTION();
- //m_pEntity->Exit(ctx);
- }
- void CBranchDeviceServerSession::Handle_GetDevInfo(SpReqAnsContext<BranchDeviceService_GetDevInfo_Req, BranchDeviceService_GetDevInfo_Ans>::Pointer ctx)
- {
- LOG_FUNCTION();
- m_pEntity->GetDevInfo(ctx);
- }
- SP_BEGIN_ENTITY_MAP()
- SP_ENTITY(CBranchDeviceEntity)
- SP_END_ENTITY_MAP()
|