//===--- IndexDataConsumer.h - Abstract index data consumer -----*- 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_INDEX_INDEXDATACONSUMER_H #define LLVM_CLANG_INDEX_INDEXDATACONSUMER_H #include "clang/Index/IndexSymbol.h" #include "clang/Lex/Preprocessor.h" namespace clang { class ASTContext; class DeclContext; class Expr; class FileID; class IdentifierInfo; class ImportDecl; class MacroInfo; namespace index { class IndexDataConsumer { … }; } // namespace index } // namespace clang #endif