Move Log to ripple_basics and split websocket logging to ripple_net

This commit is contained in:
Vinnie Falco
2013-05-25 14:53:31 -07:00
parent 1f940b60c4
commit d762abfc85
49 changed files with 133 additions and 160 deletions

View File

@@ -33,16 +33,35 @@
#define RIPPLE_BASICS_H
#include <ctime>
#include <limits>
#include <sstream>
#include <string>
// KeyCache
#include <string>
#include <boost/unordered_map.hpp>
#include <boost/thread/mutex.hpp>
// Log
#include <boost/thread/recursive_mutex.hpp>
// Forward declaration
/*
namespace boost {
namespace filesystem {
class path;
}
}
*/
#include <boost/filesystem.hpp> // VFALCO: TODO, try to eliminate thie dependency
#include "../ripple_json/ripple_json.h"
#include "types/ripple_IntegerTypes.h"
#include "containers/ripple_KeyCache.h"
#include "diagnostic/ripple_Log.h"
#include "events/ripple_UptimeTimer.h"
#endif