table_properties_collector_factory.h 692 B

1234567891011121314151617
  1. // Copyright (c) Meta Platforms, Inc. and affiliates.
  2. //
  3. // This source code is licensed under both the GPLv2 (found in the
  4. // COPYING file in the root directory) and Apache 2.0 License
  5. // (found in the LICENSE.Apache file in the root directory).
  6. //
  7. #include "rocksdb/table_properties.h"
  8. #include "rocksdb/utilities/table_properties_collectors.h"
  9. #ifndef ROCKSDB_TABLE_PROPERTIES_COLLECTOR_FACTORY_H
  10. #define ROCKSDB_TABLE_PROPERTIES_COLLECTOR_FACTORY_H
  11. struct TablePropertiesCollectorFactoriesJniWrapper {
  12. std::shared_ptr<rocksdb::TablePropertiesCollectorFactory>
  13. table_properties_collector_factories;
  14. };
  15. #endif // ROCKSDB_TABLE_PROPERTIES_COLLECTOR_FACTORY_H