Files
xahaud/modules/ripple_app/ripple_app.cpp
2013-09-01 12:22:02 -07:00

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
}