summaryrefslogtreecommitdiff
path: root/src/util/command.h
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2009-12-07 05:51:09 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2009-12-07 05:51:09 +0000
commitb3bcafc179201e33c4f41ccf028c12eacc110d69 (patch)
tree6b35f7e654ac3b2278b9201db331fab980b32cd9 /src/util/command.h
parentc16be5841e613818d5764e4de99e4694a0703685 (diff)
antlr parser for the cvc4 language (boolean only)
yet to be finalized, it should work as expected
Diffstat (limited to 'src/util/command.h')
-rw-r--r--src/util/command.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/util/command.h b/src/util/command.h
index ce137896a..3d738ba45 100644
--- a/src/util/command.h
+++ b/src/util/command.h
@@ -38,9 +38,11 @@ public:
class CVC4_PUBLIC EmptyCommand : public Command {
public:
- EmptyCommand();
+ EmptyCommand(std::string name = "");
void invoke(CVC4::SmtEngine* smt_engine);
void toString(std::ostream& out) const;
+private:
+ std::string d_name;
};/* class EmptyCommand */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback