listen_interface.h 227 B

1234567891011
  1. #ifndef __LISTEN_INTERFACE_H__
  2. #define __LISTEN_INTERFACE_H__
  3. #include <string>
  4. class ListenInterface {
  5. public:
  6. virtual void onMessageReceived(int socket_id, std::string message) = 0;
  7. };
  8. #endif // __LISTEN_INTERFACE_H__