mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-20 18:45:55 +00:00
34 lines
826 B
C++
34 lines
826 B
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_ASIO_IMPL_H_INCLUDED
|
|
#define RIPPLE_ASIO_IMPL_H_INCLUDED
|
|
|
|
// Once everything is converted, these can be moved to ripple_asio.cpp
|
|
#include <boost/asio/io_service.hpp>
|
|
#include <boost/asio/ssl.hpp>
|
|
|
|
#include <boost/asio.hpp>
|
|
#include <boost/make_shared.hpp>
|
|
#include <boost/bind.hpp>
|
|
#include <boost/array.hpp>
|
|
#include <boost/foreach.hpp>
|
|
#include <boost/unordered_map.hpp> // for unit test
|
|
#include <boost/mpl/at.hpp>
|
|
#include <boost/mpl/vector.hpp>
|
|
|
|
/** Implementations for boost::asio abstractions.
|
|
|
|
These require boost::asio header material to be included.
|
|
*/
|
|
|
|
namespace ripple
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|