danicoin/src/CryptoNoteCore/CoreConfig.h

24 lines
539 B
C
Raw Normal View History

// Copyright (c) 2011-2015 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-09-15 10:48:45 +00:00
#pragma once
#include <string>
2014-09-15 10:48:45 +00:00
#include <boost/program_options.hpp>
2014-09-15 10:48:45 +00:00
2015-05-27 12:08:46 +00:00
namespace CryptoNote {
class CoreConfig {
2014-09-15 10:48:45 +00:00
public:
CoreConfig();
static void initOptions(boost::program_options::options_description& desc);
void init(const boost::program_options::variables_map& options);
std::string configFolder;
2014-09-15 10:48:45 +00:00
};
2015-05-27 12:08:46 +00:00
} //namespace CryptoNote