//===--- MultiplexExternalSemaSource.h - External Sema Interface-*- 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 // //===----------------------------------------------------------------------===// // // This file defines ExternalSemaSource interface, dispatching to all clients // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_SEMA_MULTIPLEXEXTERNALSEMASOURCE_H #define LLVM_CLANG_SEMA_MULTIPLEXEXTERNALSEMASOURCE_H #include "clang/Sema/ExternalSemaSource.h" #include "clang/Sema/Weak.h" #include "llvm/ADT/SmallVector.h" #include <utility> namespace clang { class CXXConstructorDecl; class CXXRecordDecl; class DeclaratorDecl; struct ExternalVTableUse; class LookupResult; class NamespaceDecl; class Scope; class Sema; class TypedefNameDecl; class ValueDecl; class VarDecl; /// An abstract interface that should be implemented by /// external AST sources that also provide information for semantic /// analysis. class MultiplexExternalSemaSource : public ExternalSemaSource { … }; } // end namespace clang #endif