mv Client and Server in headers

This commit is contained in:
hugogogo
2022-07-29 11:23:40 +02:00
parent 1ec6f0b47e
commit 035dbe804d
3 changed files with 21 additions and 32 deletions

View File

@@ -1,27 +0,0 @@
#ifndef CLIENT_HPP
# define CLIENT_HPP
# include <iostream>
# include <string>
# include <map>
class Client
{
public:
// Client(Placeholder);
// Client();
// Client(Client const &src);
// ~Client();
// Client &operator=(Client const &rhs);
int fd;
std::string raw_request;
std::map<std::string, std::string> request;
std::map<std::string, std::string> response;
private:
};
#endif