summaryrefslogtreecommitdiff
path: root/src/parser/parser.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-05-23 23:15:25 +0000
committerMorgan Deters <mdeters@gmail.com>2011-05-23 23:15:25 +0000
commit5707fbf2af8c3a941ce3249cf0cb3190a5b069e4 (patch)
tree084d0868ffcf319c8a92b3e4e65080a1709ce61d /src/parser/parser.h
parent3f7f9df5f0c419b7f7dd39e32852161f406a441f (diff)
fixes for "make dist" and "make doc", minor cleanups
Diffstat (limited to 'src/parser/parser.h')
-rw-r--r--src/parser/parser.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/parser/parser.h b/src/parser/parser.h
index 2e7e3ca3d..b2f76b39d 100644
--- a/src/parser/parser.h
+++ b/src/parser/parser.h
@@ -164,12 +164,17 @@ class CVC4_PUBLIC Parser {
protected:
/**
- * Create a parser state. NOTE: The parser takes "ownership" of the given
+ * Create a parser state.
+ *
+ * @attention The parser takes "ownership" of the given
* input and will delete it on destruction.
*
* @param exprManager the expression manager to use when creating expressions
* @param input the parser input
* @param strictMode whether to incorporate strict(er) compliance checks
+ * @param parseOnly whether we are parsing only (and therefore certain checks
+ * need not be performed, like those about unimplemented features, @see
+ * unimplementedFeature())
*/
Parser(ExprManager* exprManager, Input* input, bool strictMode = false, bool parseOnly = false);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback