summaryrefslogtreecommitdiff
path: root/src/parser/cvc/cvc_parser.h
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2009-12-11 04:00:14 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2009-12-11 04:00:14 +0000
commitd26cd7a159bb56f492e21b7536f68abf821ca02a (patch)
tree3f601cae6490a8bfb4dc7dcdcc5c9b4dd1a75711 /src/parser/cvc/cvc_parser.h
parent82faddb718aaae5f52001e09d0754a3d254e2285 (diff)
Extracted the public Expr and ExprManager interface to encapsulate the optimized expressions and the internal expression manager.
Diffstat (limited to 'src/parser/cvc/cvc_parser.h')
-rw-r--r--src/parser/cvc/cvc_parser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser/cvc/cvc_parser.h b/src/parser/cvc/cvc_parser.h
index 07699916f..9cb6b7594 100644
--- a/src/parser/cvc/cvc_parser.h
+++ b/src/parser/cvc/cvc_parser.h
@@ -37,7 +37,7 @@ public:
* @param input the input stream to parse
* @param file_name the name of the file (for diagnostic output)
*/
- CvcParser(NodeManager* em, std::istream& input, const char* file_name = "");
+ CvcParser(ExprManager* em, std::istream& input, const char* file_name = "");
/**
* Destructor.
@@ -57,7 +57,7 @@ public:
* Parses the next complete expression of the stream.
* @return the expression parsed
*/
- Node parseNextExpression() throw(ParserException);
+ Expr parseNextExpression() throw(ParserException);
protected:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback