// ABCCHandlers.cpp: implementation of the ABCCHandlers class. // ////////////////////////////////////////////////////////////////////// #include "ABCCommon.h" #include "ABCCHandlers.h" ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// ABCCHandlers::ABCCHandlers() { } ABCCHandlers::~ABCCHandlers() { } rtr_status_t ABCCHandlers::OnAccepted( RTRMessage *pRTRMessage, RTRClientTransactionController *pController ) { return ABCOrderSucceeded; } rtr_status_t ABCCHandlers::OnRejected( RTRMessage *pRTRMessage, RTRClientTransactionController *pController ) { return ABCOrderFailed; }