Stub subscribe for JSON-RPC.

This commit is contained in:
Arthur Britto
2012-12-29 14:42:38 -08:00
parent 86d7781255
commit 192dae3b74
7 changed files with 203 additions and 54 deletions

12
src/cpp/ripple/RPCSub.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include "RPCSub.h"
RPCSub::RPCSub(const std::string& strUrl, const std::string& strUsername, const std::string& strPassword)
: mUrl(strUrl), mUsername(strUsername), mPassword(strPassword)
{
}
void RPCSub::send(const Json::Value& jvObj)
{
}