Replaced tabs with spaces

This commit is contained in:
2020-06-17 11:54:09 +02:00
parent e4a3383b1f
commit 8a7b381d63
21 changed files with 1617 additions and 1617 deletions

View File

@ -8,41 +8,41 @@ using namespace std;
class URI {
private:
string webroot;
string reqpath;
string relpath;
string query;
string info;
string filepath;
string newpath;
bool queryinit;
string webroot;
string reqpath;
string relpath;
string query;
string info;
string filepath;
string newpath;
bool queryinit;
public:
URI(string webroot, string reqpath);
URI(string webroot, string reqpath);
string getWebRoot();
string getWebRoot();
string getRelativePath();
string getRelativePath();
string getAbsolutePath();
string getAbsolutePath();
string getFilePath();
string getFilePath();
string getRelativeFilePath();
string getRelativeFilePath();
string getNewPath();
string getNewPath();
FILE *openFile();
FILE *openFile();
string getFilePathInfo();
string getFilePathInfo();
string getFileType();
string getFileType();
bool isStatic();
bool isStatic();
string getQuery();
string getQuery();
bool hasQuery();
bool hasQuery();
};