send_interface.h 223 B

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