Comment out non-working code.

This commit is contained in:
JoelKatz
2011-12-17 13:33:32 -08:00
parent 1fb12e9883
commit aad4696a46
6 changed files with 12 additions and 32 deletions

View File

@@ -4,7 +4,6 @@
#include <boost/shared_ptr.hpp>
#include <boost/enable_shared_from_this.hpp>
#include <boost/asio.hpp>
#include "json/json_spirit_utils.h"
class RPCServer : public boost::enable_shared_from_this<RPCServer>
{
@@ -25,7 +24,7 @@ class RPCServer : public boost::enable_shared_from_this<RPCServer>
std::string handleRequest(std::string& requestStr);
void sendReply();
json_spirit::Value doCommand(std::string& command,json_spirit::Array& params);
// json_spirit::Value doCommand(std::string& command,json_spirit::Array& params);
public:
typedef boost::shared_ptr<RPCServer> pointer;