Split up RPCService

This commit is contained in:
Vinnie Falco
2013-09-22 01:25:11 -07:00
parent b123b1a849
commit 5bd6fb27e6
18 changed files with 310 additions and 195 deletions

View File

@@ -0,0 +1,24 @@
//------------------------------------------------------------------------------
/*
Copyright (c) 2011-2013, OpenCoin, Inc.
*/
//==============================================================================
namespace ripple {
namespace RPC {
Service::Service ()
{
}
Service::~Service ()
{
}
Handlers const& Service::handlers() const
{
return m_handlers;
}
}
}