//===- AttrVisitor.h - Visitor for Attr subclasses --------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file defines the AttrVisitor interface. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_AST_ATTRVISITOR_H #define LLVM_CLANG_AST_ATTRVISITOR_H #include "clang/AST/Attr.h" namespace clang { namespace attrvisitor { /// A simple visitor class that helps create attribute visitors. template