123456789101112131415161718192021 |
- #include "stdafx.h"
- #include "mod_WatchDog.h"
- void WatchDogServerSession::Handle_StartWatch(SpReqAnsContext<WatchDogService_StartWatch_Req,WatchDogService_StartWatch_Ans>::Pointer ctx)
- {
- m_pEntity->StartWatch(ctx);
- }
- void WatchDogServerSession::Handle_Refresh(SpReqAnsContext<WatchDogService_Refresh_Req, WatchDogService_Refresh_Ans>::Pointer ctx)
- {
- m_pEntity->Refresh(ctx);
- }
- void WatchDogServerSession::Handle_StopWatch(SpReqAnsContext<WatchDogService_StopWatch_Req, WatchDogService_StopWatch_Ans>::Pointer ctx)
- {
- m_pEntity->StopWatch(ctx);
- }
- SP_BEGIN_ENTITY_MAP()
- SP_ENTITY(CWatchDogEntity)
- SP_END_ENTITY_MAP()
|