mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Move Application to ripple_app.cpp
This commit is contained in:
32
modules/ripple_app/ripple_app.cpp
Normal file
32
modules/ripple_app/ripple_app.cpp
Normal file
@@ -0,0 +1,32 @@
|
||||
//------------------------------------------------------------------------------
|
||||
/*
|
||||
Copyright (c) 2011-2013, OpenCoin, Inc.
|
||||
*/
|
||||
//==============================================================================
|
||||
|
||||
#include "BeastConfig.h"
|
||||
|
||||
#include "ripple_app.h"
|
||||
|
||||
// This file should only hold the Application object .cpp. It depends on
|
||||
// everything else. Nothing else should depend on the Application
|
||||
// implementation (although they will depend on its abstract interface)
|
||||
//
|
||||
|
||||
namespace ripple
|
||||
{
|
||||
|
||||
#include "boost/ripple_IoService.h" // deprecated
|
||||
#include "boost/ripple_IoService.cpp" // deprecated
|
||||
|
||||
#ifdef _MSC_VER
|
||||
# pragma warning (push)
|
||||
# pragma warning (disable: 4244) // conversion, possible loss of data
|
||||
# pragma warning (disable: 4018) // signed/unsigned mismatch
|
||||
#endif
|
||||
#include "main/ripple_Application.cpp"
|
||||
#ifdef _MSC_VER
|
||||
# pragma warning (pop)
|
||||
#endif
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user