mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Summary: Replace include/leveldb with include/rocksdb. Test Plan: make clean; make check make clean; make release Differential Revision: https://reviews.facebook.net/D12489
15 lines
347 B
C++
15 lines
347 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 leveldb {
|
|
|
|
class LDBTool {
|
|
public:
|
|
void Run(int argc, char** argv, Options = Options());
|
|
};
|
|
|
|
} // namespace leveldb
|
|
#endif // STORAGE_ROCKSDB_INCLUDE_LDB_TOOL_H
|