#include "stdafx.h" #include "mod_ThermalPrint.h" void ThermalPrintServerSession::Handle_DoPrint( SpReqAnsContext::Pointer ctx ) { Dbg("PrintReq received!"); m_pEntity->DoPrint(ctx); } void ThermalPrintServerSession::Handle_PrinterStatus( SpReqAnsContext::Pointer ctx ) { Dbg("PrinterStatus received!"); m_pEntity->PrinterStatus(ctx); } void ThermalPrintServerSession::Handle_PrintEntityStatus( SpReqAnsContext::Pointer ctx ) { Dbg("PrintEntityStatus received!"); m_pEntity->PrintEntityStatus(ctx); } SP_BEGIN_ENTITY_MAP() SP_ENTITY(CThermalPrintEntity) SP_END_ENTITY_MAP()