Do not use __ prefix for header guards. (#2974)
[cvc5.git] / src / theory / booleans / theory_bool_rewriter.h
1 /********************* */
2 /*! \file theory_bool_rewriter.h
3 ** \verbatim
4 ** Top contributors (to current version):
5 ** Dejan Jovanovic, Morgan Deters, Tim King
6 ** This file is part of the CVC4 project.
7 ** Copyright (c) 2009-2019 by the authors listed in the file AUTHORS
8 ** in the top-level source directory) and their institutional affiliations.
9 ** All rights reserved. See the file COPYING in the top-level source
10 ** directory for licensing information.\endverbatim
11 **
12 ** \brief [[ Add one-line brief description here ]]
13 **
14 ** [[ Add lengthier description here ]]
15 ** \todo document this file
16 **/
17
18 #include "cvc4_private.h"
19
20 #ifndef CVC4__THEORY__BOOLEANS__THEORY_BOOL_REWRITER_H
21 #define CVC4__THEORY__BOOLEANS__THEORY_BOOL_REWRITER_H
22
23 #include "theory/rewriter.h"
24
25 namespace CVC4 {
26 namespace theory {
27 namespace booleans {
28
29 class TheoryBoolRewriter {
30
31 public:
32
33 static RewriteResponse preRewrite(TNode node);
34 static RewriteResponse postRewrite(TNode node);
35
36 static void init() {}
37 static void shutdown() {}
38
39 };/* class TheoryBoolRewriter */
40
41 }/* CVC4::theory::booleans namespace */
42 }/* CVC4::theory namespace */
43 }/* CVC4 namespace */
44
45 #endif /* CVC4__THEORY__BOOLEANS__THEORY_BOOL_REWRITER_H */