Client struct, signal wip, refactoring

This commit is contained in:
LuckyLaszlo
2022-07-25 05:28:44 +02:00
parent 72d9709ca7
commit dcf94c2c61
6 changed files with 289 additions and 95 deletions

27
srcs/Client.hpp Normal file
View File

@@ -0,0 +1,27 @@
#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