1//===----- Attr.h - Enum values for C Attribute Kinds ----------*- C++ -*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10//  This file defines the attr::Kind enum
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CLANG_ATTRKINDS_H
15#define LLVM_CLANG_ATTRKINDS_H
16
17namespace clang {
18
19namespace attr {
20
21// Kind - This is a list of all the recognized kinds of attributes.
22enum Kind {
23#define ATTR(X) X,
24#define LAST_INHERITABLE_ATTR(X) X, LAST_INHERITABLE = X,
25#define LAST_INHERITABLE_PARAM_ATTR(X) X, LAST_INHERITABLE_PARAM = X,
26#include "clang/Basic/AttrList.inc"
27  NUM_ATTRS
28};
29
30} // end namespace attr
31} // end namespace clang
32
33#endif
34