tinyrpc/includes/net/tcp/tcp_connection.hpp

20 lines
280 B
C++
Raw Normal View History

2024-12-25 19:39:38 +08:00
#pragma once
#include "fd_event.hpp"
namespace tinyrpc {
class TcpConnection {
public:
TcpConnection(int fd) : m_fdEvent(fd){};
~TcpConnection();
private:
FdEvent m_fdEvent;
// TODO .... 完善 TcpConnection 类
};
}