Ted Kremenek | 2ff3e69 | 2007-11-29 23:05:17 +0000 | [diff] [blame] | 1 | //===--- ASTConsumer.cpp - Abstract interface for reading ASTs --*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Ted Kremenek | 2ff3e69 | 2007-11-29 23:05:17 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines the ASTConsumer class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "clang/AST/ASTConsumer.h" |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 15 | #include "clang/AST/DeclGroup.h" |
Ted Kremenek | 2ff3e69 | 2007-11-29 23:05:17 +0000 | [diff] [blame] | 16 | using namespace clang; |
| 17 | |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 18 | void ASTConsumer::HandleTopLevelDecl(DeclGroupRef D) {} |
| 19 | |