diff --git a/src/Client/Location.cpp b/src/Client/Location.cpp new file mode 100644 index 0000000..612e228 --- /dev/null +++ b/src/Client/Location.cpp @@ -0,0 +1,9 @@ +#include "Location.hpp" + +Location::Location() +{ +} + +Location::~Location() +{ +} \ No newline at end of file diff --git a/src/Client/Location.hpp b/src/Client/Location.hpp new file mode 100644 index 0000000..b62fe3f --- /dev/null +++ b/src/Client/Location.hpp @@ -0,0 +1,22 @@ +#ifndef LOCATION_HPP +#define LOCATION_HPP + +#include "webserv.hpp" +#include "ServerConfig.hpp" + +class Location +{ +private: + location *loc; + +public: + Location(); + ~Location(); + + void setLocation(location *location); + bool checkLocation(std::string URI); +private: + +}; + +#endif \ No newline at end of file