2016-02-09 23:12:00 +00:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-15 23:03:42 +00:00
|
|
|
// 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).
|
2013-10-16 21:59:46 +00:00
|
|
|
//
|
2011-03-18 22:37:00 +00: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.
|
|
|
|
|
2015-02-24 06:05:06 +00:00
|
|
|
#pragma once
|
2011-03-18 22:37:00 +00:00
|
|
|
|
2014-11-25 04:44:49 +00:00
|
|
|
#include <string>
|
2011-03-18 22:37:00 +00:00
|
|
|
|
|
|
|
// Include the appropriate platform specific file below. If you are
|
|
|
|
// porting to a new platform, see "port_example.h" for documentation
|
|
|
|
// of what the new port_<platform>.h file must provide.
|
2013-11-18 19:40:16 +00:00
|
|
|
#if defined(ROCKSDB_PLATFORM_POSIX)
|
2015-07-13 19:11:05 +00:00
|
|
|
#include "port/port_posix.h"
|
2015-07-01 23:13:49 +00:00
|
|
|
#elif defined(OS_WIN)
|
2015-07-13 19:11:05 +00:00
|
|
|
#include "port/win/port_win.h"
|
2011-03-18 22:37:00 +00:00
|
|
|
#endif
|