mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
33 lines
542 B
C++
33 lines
542 B
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_BASIO_FWDECL_H_INCLUDED
|
|
#define RIPPLE_BASIO_FWDECL_H_INCLUDED
|
|
|
|
/** Forward declarations for boost::asio.
|
|
|
|
These allow the header material for boost::asio to be omitted for
|
|
most translation units.
|
|
*/
|
|
|
|
namespace boost {
|
|
|
|
namespace asio {
|
|
|
|
class io_service;
|
|
|
|
namespace ssl {
|
|
|
|
class context;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|