mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Summary: Migrate names of properties from 'leveldb' prefix to 'rocksdb' prefix. Test Plan: make check Reviewers: emayanke, haobo Reviewed By: haobo CC: leveldb Differential Revision: https://reviews.facebook.net/D13311
18 lines
389 B
C++
18 lines
389 B
C++
// Copyright 2008-present Facebook. All Rights Reserved.
|
|
#ifndef STORAGE_ROCKSDB_INCLUDE_LDB_TOOL_H
|
|
#define STORAGE_ROCKSDB_INCLUDE_LDB_TOOL_H
|
|
#include "rocksdb/options.h"
|
|
|
|
namespace rocksdb {
|
|
|
|
class LDBTool {
|
|
public:
|
|
void Run(int argc, char** argv, Options = Options());
|
|
};
|
|
|
|
} // namespace rocksdb
|
|
|
|
#include "rocksdb/rocksdb_to_leveldb.h"
|
|
|
|
#endif // STORAGE_ROCKSDB_INCLUDE_LDB_TOOL_H
|