mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
25 lines
374 B
C++
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;
|
|
}
|
|
|
|
}
|
|
}
|