aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Analysis/PathSensitive/GRSimpleAPICheck.h
blob: 782ddcfffeacda47f8bc24fb38dbb01691727323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// GRCheckAPI.h - Simple API checks based on GRAuditor ------------*- C++ -*--//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
//  This file defines the interface for building simple, path-sensitive checks
//  that are stateless and only emit warnings at errors that occur at
//  CallExpr or ObjCMessageExpr.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_CLANG_ANALYSIS_GRAPICHECKS
#define LLVM_CLANG_ANALYSIS_GRAPICHECKS

#include "clang/Analysis/PathSensitive/GRAuditor.h"

namespace clang {
  
class ValueState;
class Diagnostic;
class BugReporter;
class ASTContext;
class GRExprEngine;
class PathDiagnosticClient;
template <typename T> class ExplodedGraph;
  
  
class GRSimpleAPICheck : public GRAuditor<ValueState> {
public:
  GRSimpleAPICheck() {}
  virtual ~GRSimpleAPICheck() {}
  virtual void EmitWarnings(BugReporter& BR) = 0;
};

} // end namespace clang

#endif