summaryrefslogtreecommitdiff
path: root/src/parser/input.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser/input.h')
-rw-r--r--src/parser/input.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/parser/input.h b/src/parser/input.h
index 25023e1a8..8fa51a095 100644
--- a/src/parser/input.h
+++ b/src/parser/input.h
@@ -110,7 +110,7 @@ public:
*/
static Input* newFileInput(InputLanguage lang,
const std::string& filename,
- bool useMmap=false)
+ bool useMmap = false)
throw (InputStreamException, AssertionException);
/** Create an input for the given stream.
@@ -121,7 +121,8 @@ public:
*/
static Input* newStreamInput(InputLanguage lang,
std::istream& input,
- const std::string& name)
+ const std::string& name,
+ bool lineBuffered = false)
throw (InputStreamException, AssertionException);
/** Create an input for the given string
@@ -182,6 +183,7 @@ protected:
/** Set the Parser object for this input. */
virtual void setParser(Parser& parser) = 0;
+
};/* class Input */
}/* CVC4::parser namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback