Files
webserv/src/Client/Location.hpp
2022-02-05 15:06:24 +03:00

22 lines
299 B
C++

#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