#ifndef MERGE_OPERATORS_H #define MERGE_OPERATORS_H #include #include "leveldb/merge_operator.h" namespace leveldb { class MergeOperators { public: static std::shared_ptr CreatePutOperator(); static std::shared_ptr CreateUInt64AddOperator(); }; } #endif