mirror of
https://github.com/facebook/rocksdb.git
synced 2024-12-02 01:16:16 +00:00
3c37955a2f
Summary: The previous release 2.4 had a mapping to alias the older namespace to rocksdb. This mapping is not needed in the new release. Test Plan: make check make release Reviewers: emayanke Reviewed By: emayanke CC: leveldb Differential Revision: https://reviews.facebook.net/D13359
16 lines
348 B
C++
16 lines
348 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
|
|
|
|
#endif // STORAGE_ROCKSDB_INCLUDE_LDB_TOOL_H
|