/*-------------------------------------------------------------------------------*/ /* MessageCoorConsumer.cpp 7-Oct-99 28-Oct-99 Coor Command Parsing split onto separate files */ /*-------------------------------------------------------------------------------*/ #include "stdafx.h" #include "MessageCoorConsumer.h" /*-------------------------------------------------------------------------------*/ /*-------------------------------------------------------------------------------*/ /*-------------------------------------------------------------------------------*/ /*-------------------------------------------------------------------------------*/ /*-------------------------------------------------------------------------------*/ /*-------------------------------------------------------------------------------*/ ECoorMessageStatus CMessageCoorConsumer::ConsumeCoorMessage ( const char* _psMessageCoor, char* _psReplyText ) { ECoorMessageStatus eReturnStatus = Reply_Ok ; //\\// //Get a hold of the new command NewRawCommand ( _psMessageCoor, _psReplyText ) ; //Parse command eReturnStatus = ParseCoorMessage ( this ) ; //dispatch/execute the command if ( eReturnStatus == Reply_Ok ) eReturnStatus = MessageDispatch ( this, this ) ; return eReturnStatus ; }