mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 11:05:54 +00:00
28 lines
678 B
C
28 lines
678 B
C
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_HYPERLEVELDB_RIPPLEHEADER
|
|
#define RIPPLE_HYPERLEVELDB_RIPPLEHEADER
|
|
|
|
#include "beast/modules/beast_core/system/beast_TargetPlatform.h"
|
|
|
|
#if ! BEAST_WIN32
|
|
|
|
#define RIPPLE_HYPERLEVELDB_AVAILABLE 1
|
|
|
|
#include "hyperleveldb/hyperleveldb/cache.h"
|
|
#include "hyperleveldb/hyperleveldb/filter_policy.h"
|
|
#include "hyperleveldb/hyperleveldb/db.h"
|
|
#include "hyperleveldb/hyperleveldb/write_batch.h"
|
|
|
|
#else
|
|
|
|
#define RIPPLE_HYPERLEVELDB_AVAILABLE 0
|
|
|
|
#endif
|
|
|
|
#endif
|