Socket Server
send_interface.h
Go to the documentation of this file.
1 #ifndef __SEND_INTERFACE_H__
2 #define __SEND_INTERFACE_H__
3 
4 #include <memory>
5 #include <string>
6 
7 class SendInterface {
8  public:
9  virtual void sendMessage(int client_socket_fd,
10  std::shared_ptr<char[]> message) = 0;
11 };
12 
13 #endif // __SEND_INTERFACE_H__
SendInterface::sendMessage
virtual void sendMessage(int client_socket_fd, std::shared_ptr< char[]> message)=0
SendInterface
Definition: send_interface.h:7