![]() |
Feathercoin
0.5.0
P2P Digital Currency
|
Bitcoin RPC command dispatcher. More...
#include <bitcoinrpc.h>
Public Member Functions | |
CRPCTable () | |
const CRPCCommand * | operator[] (std::string name) const |
std::string | help (std::string name) const |
Note: This interface may still be subject to change. More... | |
json_spirit::Value | execute (const std::string &method, const json_spirit::Array ¶ms) const |
Execute a method. More... | |
Private Attributes | |
std::map< std::string, const CRPCCommand * > | mapCommands |
Bitcoin RPC command dispatcher.
Definition at line 108 of file bitcoinrpc.h.
CRPCTable::CRPCTable | ( | ) |
Definition at line 276 of file bitcoinrpc.cpp.
json_spirit::Value CRPCTable::execute | ( | const std::string & | method, |
const json_spirit::Array & | params | ||
) | const |
Execute a method.
method | Method to execute |
params | Array of arguments (JSON objects) |
an | exception (json_spirit::Value) when an error happens. |
Definition at line 1023 of file bitcoinrpc.cpp.
string CRPCTable::help | ( | std::string | name | ) | const |
Note: This interface may still be subject to change.
Definition at line 126 of file bitcoinrpc.cpp.
const CRPCCommand * CRPCTable::operator[] | ( | std::string | name | ) | const |
Definition at line 288 of file bitcoinrpc.cpp.
|
private |
Definition at line 111 of file bitcoinrpc.h.