summaryrefslogtreecommitdiff
path: root/src/options/options_get_option_template.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/options/options_get_option_template.cpp')
-rw-r--r--src/options/options_get_option_template.cpp53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/options/options_get_option_template.cpp b/src/options/options_get_option_template.cpp
new file mode 100644
index 000000000..b7e5433ee
--- /dev/null
+++ b/src/options/options_get_option_template.cpp
@@ -0,0 +1,53 @@
+/********************* */
+/*! \file option_handler_get_option_template.cpp
+ ** \verbatim
+ ** Original author: Morgan Deters
+ ** Major contributors: none
+ ** Minor contributors (to current version): none
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2009-2014 New York University and The University of Iowa
+ ** See the file COPYING in the top-level source directory for licensing
+ ** information.\endverbatim
+ **
+ ** \brief Implementation of OptionsHandler::getOption.
+ **
+ ** This template file is expanded into the cpp implementation of
+ ** OptionsHandler::setOption. The file is essentially the contents
+ ** of the ${smt_getoption_handlers} variable in the options/mkoptions
+ ** script. This variable depends on all options files. To generate this file,
+ ** first generate options/summary.sed.
+ **/
+
+#include <iomanip>
+#include <string>
+#include <sstream>
+
+
+#include "base/output.h"
+#include "base/modal_exception.h"
+#include "options/option_exception.h"
+#include "options/options.h"
+#include "options/options_handler.h"
+
+
+${include_all_option_headers}
+${option_handler_includes}
+
+#line 37 "${template}"
+
+using namespace std;
+
+namespace CVC4 {
+
+std::string Options::getOption(const std::string& key) const
+ throw(OptionException) {
+ Trace("options") << "SMT getOption(" << key << ")" << endl;
+
+ ${smt_getoption_handlers}
+
+#line 49 "${template}"
+
+ throw UnrecognizedOptionException(key);
+}
+
+}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback