/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* cgi.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/03/24 14:17:34 by adjoly #+# #+# */ /* Updated: 2025/03/24 14:20:00 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once #include class cgi { public: cgi(); ~cgi(void); protected: private: std::string _request; };