Move Application to ripple_app.cpp

This commit is contained in:
Vinnie Falco
2013-08-31 14:46:09 -07:00
parent a709167801
commit 3526cabd7b
9 changed files with 137 additions and 108 deletions

View 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
}