-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebServer.h
More file actions
38 lines (32 loc) · 728 Bytes
/
WebServer.h
File metadata and controls
38 lines (32 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef WEBSERVER_H
#define WEBSERVER_H
#include <string>
#include <cmath>
#include <fstream>
#include <string>
#include <iostream>
#include <mutex>
#include "GPSParser.h"
#include "PaulNovackGlobals.h"
#include "GPSUtils.h"
#include "json.hpp"
#include "AppConfig.h"
#include "Navigation.h"
#include "DataStore.h"
#include "crow.h"
using namespace std;
namespace PaulNovack {
class WebServer {
public:
WebServer();
void Run();
WebServer(const WebServer& orig);
void setNavigation(Navigation& navigation);
void setDataStore(DataStore& ds);
virtual ~WebServer();
private:
Navigation* _navigation;
DataStore* _ds;
};
}
#endif /* WEBSERVER_H */