CBMC
goto_bmc_parse_options.h
Go to the documentation of this file.
1 // Author: Fotis Koutoulakis for Diffblue Ltd.
2 
3 #ifndef CPROVER_GOTO_BMC_GOTO_BMC_PARSE_OPTIONS_H
4 #define CPROVER_GOTO_BMC_GOTO_BMC_PARSE_OPTIONS_H
5 
6 #include <util/parse_options.h>
7 
9 
10 #include <memory>
11 #include <string>
12 #include <vector>
13 
14 // clang-format off
15 #define GOTO_BMC_OPTIONS \
16  "(version)"
17 // clang-format on
18 
20 {
21 public:
22  goto_bmc_parse_optionst(int argc, const char **argv);
23 
24  void help() override;
25 
26  int doit() override;
27 };
28 
29 #endif // CPROVER_GOTO_BMC_GOTO_BMC_PARSE_OPTIONS_H
goto_bmc_parse_optionst(int argc, const char **argv)