501e5cf431084b600144d1433545c9fc0a4eb7f3
[cvc5.git] / src / options / module_template.h
1 /********************* */
2 /*! \file module_template.h
3 ** \verbatim
4 ** Top contributors (to current version):
5 ** Mathias Preiner
6 ** This file is part of the CVC4 project.
7 ** Copyright (c) 2009-2021 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 Contains code for handling command-line options.
13 **
14 ** For each <module>_options.toml configuration file, mkoptions.py
15 ** expands this template and generates a <module>_options.h file.
16 **/
17
18 #include "cvc4_private.h"
19
20 #ifndef CVC4__OPTIONS__${id}$_H
21 #define CVC4__OPTIONS__${id}$_H
22
23 #include "options/options.h"
24
25 // clang-format off
26 ${includes}$
27
28 ${holder_spec}$
29
30 namespace CVC5 {
31 namespace options {
32
33 ${modes}$
34
35 ${decls}$
36
37 } // namespace options
38
39 ${specs}$
40
41 namespace options {
42 ${inls}$
43
44 } // namespace options
45 } // namespace CVC5
46
47 #endif /* CVC4__OPTIONS__${id}$_H */
48 //clang-format on