summaryrefslogtreecommitdiff
path: root/src/expr/expr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/expr.h')
-rw-r--r--src/expr/expr.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/expr/expr.h b/src/expr/expr.h
index 5a11e0fbd..0fcb5ea6a 100644
--- a/src/expr/expr.h
+++ b/src/expr/expr.h
@@ -60,6 +60,10 @@ class CVC4_PUBLIC Expr {
friend class ExprManager;
public:
+
+ /** Default constructor, makes a null expression. */
+ CVC4_PUBLIC Expr();
+
CVC4_PUBLIC Expr(const Expr&);
/** Destructor. Decrements the reference count and, if zero,
@@ -103,6 +107,9 @@ public:
inline iterator end() const;
void toString(std::ostream&) const;
+
+ bool isNull() const;
+
};/* class Expr */
}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback