//===- PreprocessorLexer.h - C Language Family Lexer ------------*- 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 PreprocessorLexer interface. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_LEX_PREPROCESSORLEXER_H #define LLVM_CLANG_LEX_PREPROCESSORLEXER_H #include "clang/Basic/FileEntry.h" #include "clang/Basic/SourceLocation.h" #include "clang/Lex/MultipleIncludeOpt.h" #include "clang/Lex/Token.h" #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/SmallVector.h" #include <cassert> namespace clang { class FileEntry; class Preprocessor; class PreprocessorLexer { … }; } // namespace clang #endif // LLVM_CLANG_LEX_PREPROCESSORLEXER_H