Split thread and range stuff out of utils

This commit is contained in:
Vinnie Falco
2013-05-27 10:05:49 -07:00
parent 9b5d047c90
commit 90bc0c1a8c
16 changed files with 271 additions and 128 deletions

View File

@@ -38,6 +38,11 @@
#include <sstream>
#include <string>
#include <boost/version.hpp>
#if BOOST_VERSION < 104700
#error Boost 1.47 or later is required
#endif
// Log
#include <boost/thread/recursive_mutex.hpp>
// Forward declaration
@@ -68,6 +73,9 @@ namespace boost {
#include <boost/ref.hpp>
#include <boost/make_shared.hpp>
// RippleTime
#include <boost/date_time/posix_time/posix_time.hpp>
// ByteOrder
#ifdef WIN32
// (nothing)
@@ -103,5 +111,7 @@ namespace boost {
#include "system/ripple_PlatformMacros.h"
#include "system/ripple_RandomNumbers.h"
#include "system/ripple_ThreadName.h"
#include "system/ripple_Time.h"
#endif