2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2014-11-08 02:23:58 +01:00
|
|
|
#ifndef ROCKSDB_LITE
|
|
|
|
#pragma once
|
|
|
|
|
2019-01-03 20:11:09 +01:00
|
|
|
#include "rocksdb/options.h"
|
|
|
|
|
2014-11-08 02:23:58 +01:00
|
|
|
namespace rocksdb {
|
|
|
|
|
|
|
|
class SSTDumpTool {
|
|
|
|
public:
|
2019-01-03 20:11:09 +01:00
|
|
|
int Run(int argc, char** argv, Options options = Options());
|
2014-11-08 02:23:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace rocksdb
|
|
|
|
|
|
|
|
#endif // ROCKSDB_LITE
|