File tree Expand file tree Collapse file tree 3 files changed +46
-0
lines changed Expand file tree Collapse file tree 3 files changed +46
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ SRC = anonymous_member.cpp \
1313 builtin_factory.cpp \
1414 c_misc.cpp \
1515 c_nondet_symbol_factory.cpp \
16+ c_object_factory_parameters.cpp \
1617 c_preprocess.cpp \
1718 c_qualifiers.cpp \
1819 c_storage_spec.cpp \
Original file line number Diff line number Diff line change 1+ /* ******************************************************************\
2+
3+ Module:
4+
5+ Author: Daniel Poetzl
6+
7+ \*******************************************************************/
8+
9+ #include " c_object_factory_parameters.h"
10+
11+ void parse_c_object_factory_options (const cmdlinet &cmdline, optionst &options)
12+ {
13+ parse_object_factory_options (cmdline, options);
14+ }
Original file line number Diff line number Diff line change 1+ /*******************************************************************\
2+
3+ Module:
4+
5+ Author: Daniel Poetzl
6+
7+ \*******************************************************************/
8+
9+ #ifndef CPROVER_ANSI_C_C_OBJECT_FACTORY_PARAMETERS_H
10+ #define CPROVER_ANSI_C_C_OBJECT_FACTORY_PARAMETERS_H
11+
12+ #include <util/object_factory_parameters.h>
13+
14+ struct c_object_factory_parameterst final : public object_factory_parameterst
15+ {
16+ c_object_factory_parameterst ()
17+ {
18+ }
19+
20+ explicit c_object_factory_parameterst (const optionst & options )
21+ : object_factory_parameterst (options )
22+ {
23+ }
24+ };
25+
26+ /// Parse the c object factory parameters from a given command line
27+ /// \param cmdline Command line
28+ /// \param [out] options The options object that will be updated
29+ void parse_c_object_factory_options (const cmdlinet & cmdline , optionst & options );
30+
31+ #endif
You can’t perform that action at this time.
0 commit comments