Files
xahaud/modules/ripple_asio/ripple_asio_impl.h
2013-08-07 15:16:44 -07:00

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