rocksdb/java/rocksjni/table_properties_collector_factory.h
akankshamahajan 7b24dec25d Fix header files to meet Open source requirements (#12164)
Summary:
Same as title

Pull Request resolved: https://github.com/facebook/rocksdb/pull/12164

Reviewed By: hx235

Differential Revision: D52302234

Pulled By: akankshamahajan15

fbshipit-source-id: d4724fc944c773242788f5a47d1c7eadbbc5a522
2023-12-19 13:43:17 -08:00

18 lines
692 B
C++

// Copyright (c) Meta Platforms, Inc. and affiliates.
//
// 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).
//
#include "rocksdb/table_properties.h"
#include "rocksdb/utilities/table_properties_collectors.h"
#ifndef ROCKSDB_TABLE_PROPERTIES_COLLECTOR_FACTORY_H
#define ROCKSDB_TABLE_PROPERTIES_COLLECTOR_FACTORY_H
struct TablePropertiesCollectorFactoriesJniWrapper {
std::shared_ptr<rocksdb::TablePropertiesCollectorFactory>
table_properties_collector_factories;
};
#endif // ROCKSDB_TABLE_PROPERTIES_COLLECTOR_FACTORY_H