blob: 985b1e0a1d7e18eda9edd6060ab01b923c6c018d [file] [log] [blame]
Ted Kremenekc6e11ff2009-11-23 18:53:03 +00001//== 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"
16using namespace clang;
17
18Checker::~Checker() {}