//===- PreprocessorOptions.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 // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_LEX_PREPROCESSOROPTIONS_H_ #define LLVM_CLANG_LEX_PREPROCESSOROPTIONS_H_ #include "clang/Basic/BitmaskEnum.h" #include "clang/Basic/FileEntry.h" #include "clang/Basic/LLVM.h" #include "clang/Lex/DependencyDirectivesScanner.h" #include "llvm/ADT/StringRef.h" #include "llvm/ADT/StringSet.h" #include <functional> #include <map> #include <memory> #include <optional> #include <set> #include <string> #include <utility> #include <vector> namespace llvm { class MemoryBuffer; } // namespace llvm namespace clang { /// Enumerate the kinds of standard library that enum ObjCXXARCStandardLibraryKind { … }; /// Whether to disable the normal validation performed on precompiled /// headers and module files when they are loaded. enum class DisableValidationForModuleKind { … }; /// PreprocessorOptions - This class is used for passing the various options /// used in preprocessor initialization to InitializePreprocessor(). class PreprocessorOptions { … }; } // namespace clang #endif // LLVM_CLANG_LEX_PREPROCESSOROPTIONS_H_