ASTConsumer.cpp revision 193326
1193326Sed//===--- ASTConsumer.cpp - Abstract interface for reading ASTs --*- C++ -*-===//
2193326Sed//
3193326Sed//                     The LLVM Compiler Infrastructure
4193326Sed//
5193326Sed// This file is distributed under the University of Illinois Open Source
6193326Sed// License. See LICENSE.TXT for details.
7193326Sed//
8193326Sed//===----------------------------------------------------------------------===//
9193326Sed//
10193326Sed//  This file defines the ASTConsumer class.
11193326Sed//
12193326Sed//===----------------------------------------------------------------------===//
13193326Sed
14193326Sed#include "clang/AST/ASTConsumer.h"
15193326Sed#include "clang/AST/DeclGroup.h"
16193326Sedusing namespace clang;
17193326Sed
18193326Sedvoid ASTConsumer::HandleTopLevelDecl(DeclGroupRef D) {}
19193326Sed
20