generated from AfonsoCMSousa/CPP-Template
19 lines
294 B
C++
19 lines
294 B
C++
#ifndef FILE_H
|
|
#define FILE_H
|
|
|
|
#include <stdio.h>
|
|
#include <vector>
|
|
#include <string>
|
|
#include <fstream>
|
|
#include <stdexcept>
|
|
#include <map>
|
|
|
|
#include "server_structs.h"
|
|
|
|
using namespace std;
|
|
|
|
vector<string> read_file(const char *filePath);
|
|
app_info parce_args(int argc, char *argv[]);
|
|
|
|
#endif
|