Update copyright headers.
[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 ** Andres Noetzli, Mathias Preiner, Morgan Deters
6 ** This file is part of the CVC4 project.
7 ** Copyright (c) 2009-2020 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/theory_rewriter.h"
24
25 namespace CVC4 {
26 namespace theory {
27 namespace booleans {
28
29 class TheoryBoolRewriter : public TheoryRewriter
30 {
31 public:
32 RewriteResponse preRewrite(TNode node) override;
33 RewriteResponse postRewrite(TNode node) override;
34
35 }; /* class TheoryBoolRewriter */
36
37 }/* CVC4::theory::booleans namespace */
38 }/* CVC4::theory namespace */
39 }/* CVC4 namespace */
40
41 #endif /* CVC4__THEORY__BOOLEANS__THEORY_BOOL_REWRITER_H */