Receptacle
 All Classes Files Functions Variables Pages
receptacle_app.h
1 #ifndef RECEPTACLE_APP_H
2 #define RECEPTACLE_APP_H
3 
4 #include <QApplication>
5 
6 #include "log_emitter.h"
7 #include "util_collection.h"
8 #include "host_controller.h"
9 #include "dispatcher.h"
10 
11 class ReceptacleApp : public QApplication
12 {
13 public:
14  ReceptacleApp(int &argc, char **argv);
15  ~ReceptacleApp();
16 
17  void startServer(int port, LogEmitter * logger);
18 
19 protected:
20  UtilCollection* utils;
21  HostController* controller;
22  Dispatcher* server;
23 };
24 
25 #endif // RECEPTACLE_APP_H
Definition: host_controller.h:39
Definition: dispatcher.h:38
Definition: log_emitter.h:41
Definition: util_collection.h:34
Definition: receptacle_app.h:11