danicoin/src/PaymentGateService/RpcNodeConfiguration.h

24 lines
588 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
#pragma once
#include <cstdint>
#include <boost/program_options.hpp>
2014-06-25 17:21:42 +00:00
2015-05-27 12:08:46 +00:00
namespace PaymentService {
2014-06-25 17:21:42 +00:00
2015-05-27 12:08:46 +00:00
class RpcNodeConfiguration {
2014-06-25 17:21:42 +00:00
public:
2015-05-27 12:08:46 +00:00
RpcNodeConfiguration();
static void initOptions(boost::program_options::options_description& desc);
void init(const boost::program_options::variables_map& options);
2015-05-27 12:08:46 +00:00
std::string daemonHost;
uint16_t daemonPort;
2014-06-25 17:21:42 +00:00
};
2015-05-27 12:08:46 +00:00
} //namespace PaymentService