//======- AttributeCommonInfo.h - Base info about Attributes-----*- 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 AttributeCommonInfo type, which is the base for a // ParsedAttr and is used by Attr as a way to share info between the two. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_BASIC_ATTRIBUTECOMMONINFO_H #define LLVM_CLANG_BASIC_ATTRIBUTECOMMONINFO_H #include "clang/Basic/SourceLocation.h" #include "clang/Basic/TokenKinds.h" namespace clang { class ASTRecordWriter; class IdentifierInfo; class AttributeCommonInfo { … }; inline bool doesKeywordAttributeTakeArgs(tok::TokenKind Kind) { … } } // namespace clang #endif // LLVM_CLANG_BASIC_ATTRIBUTECOMMONINFO_H