Ted Kremenek | c6e11ff | 2009-11-23 18:53:03 +0000 | [diff] [blame] | 1 | //== Checker.h - Abstract interface for checkers -----------------*- 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 Checker and CheckerVisitor, classes used for creating |
| 11 | // domain-specific checks. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "clang/Analysis/PathSensitive/Checker.h" |
| 16 | using namespace clang; |
| 17 | |
| 18 | Checker::~Checker() {} |