clang API Documentation

AttrImpl.cpp
Go to the documentation of this file.
00001 //===--- AttrImpl.cpp - Classes for representing attributes -----*- C++ -*-===//
00002 //
00003 //                     The LLVM Compiler Infrastructure
00004 //
00005 // This file is distributed under the University of Illinois Open Source
00006 // License. See LICENSE.TXT for details.
00007 //
00008 //===----------------------------------------------------------------------===//
00009 //
00010 //  This file contains out-of-line virtual methods for Attr classes.
00011 //
00012 //===----------------------------------------------------------------------===//
00013 
00014 #include "clang/AST/Attr.h"
00015 #include "clang/AST/ASTContext.h"
00016 #include "clang/AST/Expr.h"
00017 #include "clang/AST/Type.h"
00018 #include "llvm/ADT/StringSwitch.h"
00019 using namespace clang;
00020 
00021 Attr::~Attr() { }
00022 
00023 void InheritableAttr::anchor() { }
00024 
00025 void InheritableParamAttr::anchor() { }
00026 
00027 #include "clang/AST/AttrImpl.inc"