//===- ASTSourceDescriptor.h -----------------------------*- 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 // //===----------------------------------------------------------------------===// // /// \file /// Defines the clang::ASTSourceDescriptor class, which abstracts clang modules /// and precompiled header files // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_BASIC_ASTSOURCEDESCRIPTOR_H #define LLVM_CLANG_BASIC_ASTSOURCEDESCRIPTOR_H #include "clang/Basic/Module.h" #include "llvm/ADT/StringRef.h" #include <string> #include <utility> namespace clang { /// Abstracts clang modules and precompiled header files and holds /// everything needed to generate debug info for an imported module /// or PCH. class ASTSourceDescriptor { … }; } // namespace clang #endif // LLVM_CLANG_BASIC_ASTSOURCEDESCRIPTOR_H