2011-03-19 06:37:00 +08:00
|
|
|
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
|
|
|
2011-03-31 02:35:40 +08:00
|
|
|
#include "leveldb/options.h"
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2011-03-31 02:35:40 +08:00
|
|
|
#include "leveldb/comparator.h"
|
|
|
|
#include "leveldb/env.h"
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
namespace leveldb {
|
|
|
|
|
2019-05-03 02:01:00 +08:00
|
|
|
Options::Options() : comparator(BytewiseComparator()), env(Env::Default()) {}
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2011-11-01 01:22:06 +08:00
|
|
|
} // namespace leveldb
|