db_impl.h 382 字节
Newer Older
X
Xu Peng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#ifndef VECENGINE_DB_IMPL_H_
#define VECENGINE_DB_IMPL_H_

#include "db.h"

namespace vecengine {

class Env;

class DBImpl : public DB {
public:
    DBImpl(const Options& options_, const std::string& name_);

    virtual ~DBImpl();
private:
    const _dbname;
    Env* const _env;
    const Options _options;

}; // DBImpl

} // namespace vecengine

#endif // VECENGINE_DB_IMPL_H_