aboutsummaryrefslogtreecommitdiff
path: root/client/main.cpp
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2016-11-01 10:30:37 +0100
committerDennis Brentjes <d.brentjes@gmail.com>2016-11-01 10:30:37 +0100
commitbdc26e00ad99f4f670df1a65b5e6439d0dfadc87 (patch)
treeb0c2f88fa15e2b638121c6b6a2d876bf2bf981b6 /client/main.cpp
parentbc0cc7d5030b80e6dbb05f6a0b49481881bd26c8 (diff)
downloadcmix-bdc26e00ad99f4f670df1a65b5e6439d0dfadc87.tar.gz
cmix-bdc26e00ad99f4f670df1a65b5e6439d0dfadc87.tar.bz2
cmix-bdc26e00ad99f4f670df1a65b5e6439d0dfadc87.zip
Used IWYU to tidy up some inclusions.
Diffstat (limited to 'client/main.cpp')
-rw-r--r--client/main.cpp17
1 files changed, 14 insertions, 3 deletions
diff --git a/client/main.cpp b/client/main.cpp
index b84c3df..63d1ebf 100644
--- a/client/main.cpp
+++ b/client/main.cpp
@@ -1,14 +1,25 @@
#include "cmixclient.hpp"
-#include "uriparser.hpp"
#include "logging.hpp"
+#include "uriparser.hpp"
-#include <boost/program_options.hpp>
#include <boost/filesystem/operations.hpp>
+#include <boost/lexical_cast/bad_lexical_cast.hpp>
+#include <boost/log/core/record.hpp>
+#include <boost/log/detail/attachable_sstream_buf.hpp>
+#include <boost/log/keywords/severity.hpp>
+#include <boost/log/sources/record_ostream.hpp>
+#include <boost/log/trivial.hpp>
+#include <boost/parameter/keyword.hpp>
+#include <boost/preprocessor/seq/enum.hpp>
+#include <boost/preprocessor/seq/size.hpp>
+#include <boost/program_options.hpp>
+#include <boost/type_index/type_index_facade.hpp>
-#include <vector>
#include <iostream>
+#include <string>
+#include <vector>
int main(int argc, char* argv[]) {
namespace po = boost::program_options;