mirror of
https://github.com/KeyZox71/webserv.git
synced 2025-05-10 23:28:46 +02:00
25 lines
1019 B
C++
25 lines
1019 B
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* cgi.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/03/24 14:17:34 by adjoly #+# #+# */
|
|
/* Updated: 2025/04/22 11:51:33 by mmoussou ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#pragma once
|
|
|
|
#include <sstream>
|
|
|
|
class cgi {
|
|
public:
|
|
cgi();
|
|
~cgi(void);
|
|
protected:
|
|
private:
|
|
std::string _request;
|
|
};
|