12345678910111213141516171819202122 |
- #ifndef __SEND_INTERFACE_H__
- #define __SEND_INTERFACE_H__
- #include <memory>
- #include <string>
- class SendInterface {
- public:
- virtual void sendMessage(int client_socket_fd,
- std::weak_ptr<uint8_t[]> w_buffer_ptr) = 0;
- };
- #endif
|