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