]> git.proxmox.com Git - ceph.git/blame - ceph/src/rocksdb/include/rocksdb/types.h
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / rocksdb / include / rocksdb / types.h
CommitLineData
7c673cae
FG
1// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
2// This source code is licensed under the BSD-style license found in the
3// LICENSE file in the root directory of this source tree. An additional grant
4// of patent rights can be found in the PATENTS file in the same directory.
5
6#ifndef STORAGE_ROCKSDB_INCLUDE_TYPES_H_
7#define STORAGE_ROCKSDB_INCLUDE_TYPES_H_
8
9#include <stdint.h>
10
11namespace rocksdb {
12
13// Define all public custom types here.
14
15// Represents a sequence number in a WAL file.
16typedef uint64_t SequenceNumber;
17
18} // namespace rocksdb
19
20#endif // STORAGE_ROCKSDB_INCLUDE_TYPES_H_