//===- ParsedAttrInfo.h - Info needed to parse an attribute -----*- 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 the ParsedAttrInfo class, which dictates how to // parse an attribute. This class is the one that plugins derive to // define a new attribute. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_BASIC_PARSEDATTRINFO_H #define LLVM_CLANG_BASIC_PARSEDATTRINFO_H #include "clang/Basic/AttrSubjectMatchRules.h" #include "clang/Basic/AttributeCommonInfo.h" #include "llvm/ADT/ArrayRef.h" #include "llvm/Support/Registry.h" #include <climits> #include <list> namespace clang { class Decl; class LangOptions; class ParsedAttr; class Sema; class Stmt; class TargetInfo; struct ParsedAttrInfo { … }; ParsedAttrInfoRegistry; const std::list<std::unique_ptr<ParsedAttrInfo>> &getAttributePluginInstances(); } // namespace clang #endif // LLVM_CLANG_BASIC_PARSEDATTRINFO_H