optimizing code

This commit is contained in:
bettercallous
2024-04-27 14:53:25 +01:00
parent ef8a9fd5d8
commit bb721c9b2a
5 changed files with 10 additions and 68 deletions

View File

@@ -2,13 +2,12 @@
Client::Client() : _isRegistered(false) {}
Client::Client(int fd, std::string addr) : _fd(fd), _addr(addr) {}
Client::Client(int fd) : _fd(fd) {}
Client::~Client() {}
int Client::getFd() const {return _fd;}
void Client::setPassword(const std::string& password) {
pass = password;
}