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