1/* Copyright 2015 The TensorFlow Authors. All Rights Reserved.
2
3Licensed under the Apache License, Version 2.0 (the "License");
4you may not use this file except in compliance with the License.
5You may obtain a copy of the License at
6
7 http://www.apache.org/licenses/LICENSE-2.0
8
9Unless required by applicable law or agreed to in writing, software
10distributed under the License is distributed on an "AS IS" BASIS,
11WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12See the License for the specific language governing permissions and
13limitations under the License.
14==============================================================================*/
15
16#ifndef TENSORFLOW_CORE_PLATFORM_FILE_SYSTEM_H_
17#define TENSORFLOW_CORE_PLATFORM_FILE_SYSTEM_H_
18
19#include <stdint.h>
20
21#include <functional>
22#include <string>
23#include <unordered_map>
24#include <utility>
25#include <vector>
26
27#include "tensorflow/core/platform/cord.h"
28#include "tensorflow/core/platform/errors.h"
29#include "tensorflow/core/platform/file_statistics.h"
30#include "tensorflow/core/platform/macros.h"
31#include "tensorflow/core/platform/platform.h"
32#include "tensorflow/core/platform/stringpiece.h"
33#include "tensorflow/core/platform/types.h"
34#include "tensorflow/tsl/platform/file_system.h"
35
36namespace tensorflow {
37// NOLINTBEGIN(misc-unused-using-decls)
38using tsl::FileSystem;
39using tsl::FileSystemRegistry;
40using tsl::RandomAccessFile;
41using tsl::ReadOnlyMemoryRegion;
42using tsl::TransactionToken;
43using tsl::WrappedFileSystem;
44using tsl::WritableFile;
45// NOLINTEND(misc-unused-using-decls)
46} // namespace tensorflow
47
48#endif // TENSORFLOW_CORE_PLATFORM_FILE_SYSTEM_H_
49