danicoin/src/PaymentGate/PaymentServiceJsonRpcServer.h

27 lines
807 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.
2015-05-27 12:08:46 +00:00
#pragma once
2015-07-30 15:22:07 +00:00
#include "JsonRpcServer/JsonRpcServer.h"
2015-05-27 12:08:46 +00:00
namespace PaymentService {
2015-07-30 15:22:07 +00:00
class WalletService;
class PaymentServiceJsonRpcServer : public CryptoNote::JsonRpcServer {
2015-05-27 12:08:46 +00:00
public:
2015-07-30 15:22:07 +00:00
PaymentServiceJsonRpcServer(System::Dispatcher& sys, System::Event& stopEvent, WalletService& service, Logging::ILogger& loggerGroup);
PaymentServiceJsonRpcServer(const PaymentServiceJsonRpcServer&) = delete;
protected:
virtual void processJsonRpcRequest(const Common::JsonValue& req, Common::JsonValue& resp) override;
2015-05-27 12:08:46 +00:00
2015-07-30 15:22:07 +00:00
private:
WalletService& service;
Logging::LoggerRef logger;
2015-05-27 12:08:46 +00:00
};
} //namespace PaymentService