2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2013-10-16 23:59:46 +02:00
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
//
|
2011-03-18 23:37:00 +01: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 07:05:06 +01:00
|
|
|
#pragma once
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2014-11-25 05:44:49 +01:00
|
|
|
#include <string>
|
2011-03-18 23:37:00 +01: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 20:40:16 +01:00
|
|
|
#if defined(ROCKSDB_PLATFORM_POSIX)
|
2015-07-13 21:11:05 +02:00
|
|
|
#include "port/port_posix.h"
|
2015-07-02 01:13:49 +02:00
|
|
|
#elif defined(OS_WIN)
|
2015-07-13 21:11:05 +02:00
|
|
|
#include "port/win/port_win.h"
|
2011-03-18 23:37:00 +01:00
|
|
|
#endif
|