#ifndef CLIENT_HPP # define CLIENT_HPP # include # include # include class Client { public: // Client(Placeholder); // Client(); // Client(Client const &src); // ~Client(); // Client &operator=(Client const &rhs); // Client &operator=(int); int fd; std::string raw_request; std::map request; std::string response; unsigned int status; // private: }; bool operator==(const Client& lhs, const Client& rhs); bool operator==(const Client& lhs, int fd); bool operator==(int fd, const Client& rhs); #endif