Tidy up compilation units

This commit is contained in:
Vinnie Falco
2015-07-12 10:35:49 -07:00
parent 94235d4b4f
commit 30e068ae17
11 changed files with 5 additions and 171 deletions

View File

@@ -61,7 +61,6 @@
#include <ripple/protocol/Indexes.h>
#include <ripple/protocol/STParsedJSON.h>
#include <ripple/protocol/types.h>
#include <ripple/rpc/Manager.h>
#include <ripple/server/make_ServerHandler.h>
#include <ripple/shamap/Family.h>
#include <ripple/validators/make_Manager.h>
@@ -277,7 +276,6 @@ public:
// These are Stoppable-related
std::unique_ptr <JobQueue> m_jobQueue;
std::unique_ptr <RPC::Manager> m_rpcManager;
// VFALCO TODO Make OrderBookDB abstract
OrderBookDB m_orderBookDB;
std::unique_ptr <PathRequests> m_pathRequests;
@@ -365,8 +363,6 @@ public:
// Anything which calls addJob must be a descendant of the JobQueue
//
, m_rpcManager (RPC::make_Manager (m_logs.journal("RPCManager")))
, m_orderBookDB (*m_jobQueue)
, m_pathRequests (new PathRequests (
@@ -473,11 +469,6 @@ public:
return *m_jobQueue;
}
RPC::Manager& getRPCManager ()
{
return *m_rpcManager;
}
LocalCredentials& getLocalCredentials ()
{
return m_localCredentials ;