danicoin/src/CryptoNoteCore/CoreConfig.cpp

26 lines
912 B
C++
Raw Normal View History

// Copyright (c) 2011-2016 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2014-06-25 17:21:42 +00:00
#include "CoreConfig.h"
2014-06-25 17:21:42 +00:00
2015-07-30 15:22:07 +00:00
#include "Common/Util.h"
#include "Common/CommandLine.h"
2014-06-25 17:21:42 +00:00
2015-05-27 12:08:46 +00:00
namespace CryptoNote {
2014-06-25 17:21:42 +00:00
CoreConfig::CoreConfig() {
2015-07-30 15:22:07 +00:00
configFolder = Tools::getDefaultDataDirectory();
}
2014-06-25 17:21:42 +00:00
void CoreConfig::init(const boost::program_options::variables_map& options) {
if (options.count(command_line::arg_data_dir.name) != 0 && (!options[command_line::arg_data_dir.name].defaulted() || configFolder == Tools::getDefaultDataDirectory())) {
configFolder = command_line::get_arg(options, command_line::arg_data_dir);
2015-12-09 13:19:03 +00:00
configFolderDefaulted = options[command_line::arg_data_dir.name].defaulted();
}
}
2014-06-25 17:21:42 +00:00
void CoreConfig::initOptions(boost::program_options::options_description& desc) {
}
2015-05-27 12:08:46 +00:00
} //namespace CryptoNote