From bf837ea666980a0556d7881316f34be7ad1e2ea2 Mon Sep 17 00:00:00 2001 From: Morgan Deters Date: Sun, 1 May 2011 22:32:32 +0000 Subject: minor fixes, plus experimental readline support in InteractiveShell --- src/expr/command.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/expr/command.h') diff --git a/src/expr/command.h b/src/expr/command.h index 585e60eb4..17736ed77 100644 --- a/src/expr/command.h +++ b/src/expr/command.h @@ -108,6 +108,8 @@ protected: public: DeclarationCommand(const std::string& id, Type t); DeclarationCommand(const std::vector& ids, Type t); + const std::vector& getDeclaredSymbols() const; + Type getDeclaredType() const; void toStream(std::ostream& out) const; };/* class DeclarationCommand */ @@ -276,6 +278,12 @@ public: void toStream(std::ostream& out) const; };/* class DatatypeDeclarationCommand */ +class CVC4_PUBLIC QuitCommand : public EmptyCommand { +public: + QuitCommand(); + void toStream(std::ostream& out) const; +};/* class QuitCommand */ + class CVC4_PUBLIC CommandSequence : public Command { private: /** All the commands to be executed (in sequence) */ -- cgit v1.2.3