//===-- FileRemapper.h - File Remapping Helper ------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_ARCMIGRATE_FILEREMAPPER_H #define LLVM_CLANG_ARCMIGRATE_FILEREMAPPER_H #include "clang/Basic/FileEntry.h" #include "clang/Basic/LLVM.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/STLExtras.h" #include "llvm/ADT/StringRef.h" #include <memory> #include <variant> namespace llvm { class MemoryBuffer; class MemoryBufferRef; } namespace clang { class FileManager; class DiagnosticsEngine; class PreprocessorOptions; namespace arcmt { class FileRemapper { … }; } // end namespace arcmt } // end namespace clang #endif