a738f9484097f97b253b11a5ce8f1d1a2d795b62
[cvc5.git] / src / preprocessing / preprocessing_pass_context.cpp
1 /********************* */
2 /*! \file preprocessing_pass_context.cpp
3 ** \verbatim
4 ** Top contributors (to current version):
5 ** Justin Xu
6 ** This file is part of the CVC4 project.
7 ** Copyright (c) 2009-2017 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 The preprocessing pass context for passes
13 **
14 ** The preprocessing pass context for passes.
15 **/
16
17 #include "preprocessing_pass_context.h"
18
19 namespace CVC4 {
20 namespace preprocessing {
21
22 PreprocessingPassContext::PreprocessingPassContext(SmtEngine* smt)
23 : d_smt(smt) {}
24
25 } // namespace preprocessing
26 } // namespace CVC4