ifc_messageprocessori.h 287 B

12345678910111213
  1. #ifndef NULLSOFT_WASABI_MESSAGEPROCESSORI_H
  2. #define NULLSOFT_WASABI_MESSAGEPROCESSORI_H
  3. #include <api/application/ifc_messageprocessor.h>
  4. class ifc_messageprocessorI: public ifc_messageprocessor
  5. {
  6. public:
  7. virtual bool ProcessMessage(MSG *msg)=0;
  8. protected:
  9. RECVS_DISPATCH;
  10. };
  11. #endif