summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher L. Conway <christopherleeconway@gmail.com>2009-11-24 21:55:37 +0000
committerChristopher L. Conway <christopherleeconway@gmail.com>2009-11-24 21:55:37 +0000
commit9d3a76f0e4676dd11e533c370a2f3a3e17ff8329 (patch)
tree95890d1e247aff9c645ed7e0be8a7fc63a129402
parentf565ec39c80294aa46f79df071e9786428feada0 (diff)
Stubbing commands
-rw-r--r--src/util/command.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util/command.h b/src/util/command.h
index aec65a5c6..804d37717 100644
--- a/src/util/command.h
+++ b/src/util/command.h
@@ -19,15 +19,18 @@ class Command {
};
class AssertCommand : public Command {
+public:
AssertCommand(const Expr&);
};
class CheckSatCommand : public Command {
+public:
CheckSatCommand(void);
CheckSatCommand(const Expr&);
};
class QueryCommand : public Command {
+public:
QueryCommand(const Expr&);
};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback