summaryrefslogtreecommitdiff
path: root/src/util/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/options.h')
-rw-r--r--src/util/options.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/util/options.h b/src/util/options.h
index b71acd982..8e2d46e99 100644
--- a/src/util/options.h
+++ b/src/util/options.h
@@ -17,7 +17,9 @@
#define __CVC4__OPTIONS_H
#include <iostream>
-#include "parser/parser.h"
+#include <string>
+#include "cvc4_config.h"
+#include "parser/parser_options.h"
namespace CVC4 {
@@ -39,7 +41,7 @@ struct CVC4_PUBLIC Options {
int verbosity;
/** The input language */
- parser::Parser::InputLanguage lang;
+ parser::InputLanguage lang;
/** Should we exit after parsing? */
bool parseOnly;
@@ -56,7 +58,7 @@ struct CVC4_PUBLIC Options {
out(0),
err(0),
verbosity(0),
- lang(parser::Parser::LANG_AUTO),
+ lang(parser::LANG_AUTO),
parseOnly(false),
semanticChecks(true),
memoryMap(false)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback