Move TaggedCache to ripple_basics and remove dependency on upTime

This commit is contained in:
Vinnie Falco
2013-05-25 15:31:45 -07:00
parent 2576e54b6e
commit fb8c370d70
17 changed files with 85 additions and 68 deletions

View File

@@ -61,17 +61,25 @@ namespace boost {
#include <boost/foreach.hpp>
#include <boost/icl/interval_set.hpp> // oof this one is ugly
// TaggedCache
#include <boost/thread/recursive_mutex.hpp>
#include <boost/unordered_map.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/ref.hpp>
#include <boost/make_shared.hpp>
#include "../ripple_json/ripple_json.h"
#include "types/ripple_IntegerTypes.h"
#include "types/ripple_IntegerTypes.h" // must come first
#include "diagnostic/ripple_Log.h" // Needed by others
#include "containers/ripple_KeyCache.h"
#include "containers/ripple_RangeSet.h"
#include "containers/ripple_SecureAllocator.h"
#include "diagnostic/ripple_Log.h"
#include "containers/ripple_TaggedCache.h"
#include "events/ripple_UptimeTimer.h"