aboutsummaryrefslogtreecommitdiff
path: root/src/client/main.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/main.hh')
-rw-r--r--src/client/main.hh23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/client/main.hh b/src/client/main.hh
new file mode 100644
index 0000000..8610763
--- /dev/null
+++ b/src/client/main.hh
@@ -0,0 +1,23 @@
+#ifndef CLIENT_MAIN_HH_
+#define CLIENT_MAIN_HH_
+
+#include <algorithm>
+#include <exception>
+#include <execinfo.h>
+#include <getopt.h>
+#include <iostream>
+#include <iterator>
+#include <signal.h>
+#include <string_view>
+#include <thread>
+#include <vector>
+
+#include <boost/lexical_cast.hpp>
+
+#include "client/client.hh"
+#include "server/server.hh"
+#include "server/shared.hh"
+#include "shared/init.hh"
+#include "shared/shared.hh"
+
+#endif