Tidy up move obsolete and deprecated files

This commit is contained in:
Vinnie Falco
2013-08-15 22:51:33 -07:00
parent fe1b8d253c
commit 8c65adbffe
22 changed files with 56 additions and 294 deletions

View File

@@ -0,0 +1,37 @@
//------------------------------------------------------------------------------
/*
Copyright (c) 2011-2013, OpenCoin, Inc.
*/
//==============================================================================
#ifndef RIPPLE_IOSERVICE_H_INCLUDED
#define RIPPLE_IOSERVICE_H_INCLUDED
namespace basio
{
/** Hides a boost::asio::ioservice implementation.
*/
class IoService
{
public:
static IoService* New (std::size_t concurrency_hint);
virtual ~IoService ();
operator boost::asio::io_service& ();
void stop ();
bool stopped ();
void run ();
private:
explicit IoService (std::size_t concurrency_hint);
private:
beast::ScopedPointer <boost::asio::io_service> m_impl;
};
}
#endif