Files
xahaud/src/ripple/rpc/impl/Service.cpp
2013-09-22 13:27:23 -07:00

25 lines
374 B
C++

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