mirror of
https://github.com/3lswear/webserv.git
synced 2025-10-29 05:17:59 +03:00
22 lines
299 B
C++
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 |