Anoncoin  0.9.4
P2P Digital Currency
rpcclient.h
Go to the documentation of this file.
1 // Copyright (c) 2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2013 The Bitcoin developers
3 // Copyright (c) 2013-2014 The Anoncoin Core developers
4 // Distributed under the MIT/X11 software license, see the accompanying
5 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
6 
7 #ifndef _ANONCOINRPC_CLIENT_H_
8 #define _ANONCOINRPC_CLIENT_H_
9 
10 #include "json/json_spirit_reader_template.h"
11 #include "json/json_spirit_utils.h"
12 #include "json/json_spirit_writer_template.h"
13 
14 int CommandLineRPC(int argc, char *argv[]);
15 
16 json_spirit::Array RPCConvertValues(const std::string &strMethod, const std::vector<std::string> &strParams);
17 
24 std::string HelpMessageCli(bool mainProgram);
25 
26 #endif
json_spirit::Array RPCConvertValues(const std::string &strMethod, const std::vector< std::string > &strParams)
Definition: rpcclient.cpp:194
std::string HelpMessageCli(bool mainProgram)
Show help message for anoncoin-cli.
Definition: rpcclient.cpp:284
int CommandLineRPC(int argc, char *argv[])
Definition: rpcclient.cpp:218