mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-18 10:05:51 +00:00
Per XLS-0095, we are taking steps to rename ripple(d) to xrpl(d). This change specifically removes all copyright notices referencing Ripple, XRPLF, and certain affiliated contributors upon mutual agreement, so the notice in the LICENSE.md file applies throughout. Copyright notices referencing external contributions remain as-is. Duplicate verbiage is also removed.
33 lines
906 B
C
33 lines
906 B
C
#ifndef XRPL_UNITY_ROCKSDB_H_INCLUDED
|
|
#define XRPL_UNITY_ROCKSDB_H_INCLUDED
|
|
|
|
#if XRPL_ROCKSDB_AVAILABLE
|
|
// #include <rocksdb2/port/port_posix.h>
|
|
#include <rocksdb/cache.h>
|
|
#include <rocksdb/compaction_filter.h>
|
|
#include <rocksdb/comparator.h>
|
|
#include <rocksdb/convenience.h>
|
|
#include <rocksdb/db.h>
|
|
#include <rocksdb/env.h>
|
|
#include <rocksdb/filter_policy.h>
|
|
#include <rocksdb/flush_block_policy.h>
|
|
#include <rocksdb/iterator.h>
|
|
#include <rocksdb/memtablerep.h>
|
|
#include <rocksdb/merge_operator.h>
|
|
#include <rocksdb/options.h>
|
|
#include <rocksdb/perf_context.h>
|
|
#include <rocksdb/slice.h>
|
|
#include <rocksdb/slice_transform.h>
|
|
#include <rocksdb/statistics.h>
|
|
#include <rocksdb/status.h>
|
|
#include <rocksdb/table.h>
|
|
#include <rocksdb/table_properties.h>
|
|
#include <rocksdb/transaction_log.h>
|
|
#include <rocksdb/types.h>
|
|
#include <rocksdb/universal_compaction.h>
|
|
#include <rocksdb/write_batch.h>
|
|
|
|
#endif
|
|
|
|
#endif
|