mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
56 lines
1.8 KiB
C++
56 lines
1.8 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#include "BeastConfig.h"
|
|
|
|
#include "ripple_core.h"
|
|
|
|
#include <fstream>
|
|
|
|
#include "beast/modules/beast_core/system/BeforeBoost.h" // must come first
|
|
#include <boost/algorithm/string.hpp>
|
|
#include <boost/foreach.hpp>
|
|
|
|
// For NodeStore backends
|
|
#include "beast/modules/beast_db/beast_db.h"
|
|
#include "../ripple_hyperleveldb/ripple_hyperleveldb.h"
|
|
#include "../ripple_leveldb/ripple_leveldb.h"
|
|
#include "../ripple_mdb/ripple_mdb.h"
|
|
|
|
namespace ripple
|
|
{
|
|
|
|
#include "functional/ripple_Config.cpp"
|
|
# include "functional/ripple_LoadFeeTrack.h" // private
|
|
#include "functional/ripple_LoadFeeTrack.cpp"
|
|
#include "functional/ripple_Job.cpp"
|
|
#include "functional/ripple_JobQueue.cpp"
|
|
#include "functional/ripple_LoadEvent.cpp"
|
|
#include "functional/ripple_LoadMonitor.cpp"
|
|
|
|
# include "node/HyperLevelDBBackendFactory.h"
|
|
# include "node/HyperLevelDBBackendFactory.cpp"
|
|
# include "node/KeyvaDBBackendFactory.h"
|
|
# include "node/KeyvaDBBackendFactory.cpp"
|
|
# include "node/LevelDBBackendFactory.h"
|
|
# include "node/LevelDBBackendFactory.cpp"
|
|
# include "node/MemoryBackendFactory.h"
|
|
# include "node/MemoryBackendFactory.cpp"
|
|
# include "node/NullBackendFactory.h"
|
|
# include "node/NullBackendFactory.cpp"
|
|
# include "node/MdbBackendFactory.h"
|
|
# include "node/MdbBackendFactory.cpp"
|
|
#include "node/NodeStore.cpp"
|
|
#include "node/NodeObject.cpp"
|
|
|
|
#include "validator/ripple_Validator.cpp"
|
|
#include "validator/ripple_ValidatorImp.h" // private
|
|
#include "validator/ripple_Validators.cpp"
|
|
#include "validator/ripple_StringsValidatorSource.cpp"
|
|
#include "validator/ripple_TrustedUriValidatorSource.cpp"
|
|
|
|
}
|