summaryrefslogtreecommitdiff
path: root/server/include/main.h
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss@sss.chaoslab.ru>2015-08-09 08:16:50 +0300
committerGluzskiy Alexandr <sss@sss.chaoslab.ru>2015-08-09 08:16:50 +0300
commit704bf55df5fae51bf0e8d86679ee7f34e22553d2 (patch)
tree68385079dec7204d8c646d4937e93d68cd4cbd42 /server/include/main.h
parent5a4cbe950cd653385fc6e93aa860542b01bdf1bc (diff)
client-qt:
socket wraper to work with both ssl and plain connection server: socket wraper to work with both ssl and plain connection bit of config related changes ssl support (untested)
Diffstat (limited to 'server/include/main.h')
-rw-r--r--server/include/main.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/server/include/main.h b/server/include/main.h
index 71769b8..4921e36 100644
--- a/server/include/main.h
+++ b/server/include/main.h
@@ -24,22 +24,6 @@
#include "api_module_metadata_storage.h"
-#include <boost/property_tree/ptree.hpp>
-#include <boost/property_tree/info_parser.hpp>
-
-namespace bpt = boost::property_tree;
-
-struct runtime_config_s{
- //TODO: define metadata and data storage modules per module alongside with default ones
- bpt::ptree config_file;
- module_metadata_storage *default_metadata_storage;
- short verbosity;
- runtime_config_s()
- {
- verbosity = 0;
- default_metadata_storage = nullptr;
- }
-};