danicoin/src/PaymentGateService/ConfigurationManager.h

27 lines
697 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.
2015-05-27 12:08:46 +00:00
#pragma once
2015-07-30 15:22:07 +00:00
#include "CryptoNoteCore/CoreConfig.h"
2015-05-27 12:08:46 +00:00
#include "PaymentServiceConfiguration.h"
2015-07-30 15:22:07 +00:00
#include "P2p/NetNodeConfig.h"
2015-05-27 12:08:46 +00:00
#include "RpcNodeConfiguration.h"
namespace PaymentService {
class ConfigurationManager {
public:
ConfigurationManager();
bool init(int argc, char** argv);
bool startInprocess;
Configuration gateConfiguration;
CryptoNote::NetNodeConfig netNodeConfig;
CryptoNote::CoreConfig coreConfig;
RpcNodeConfiguration remoteNodeConfig;
};
} //namespace PaymentService