summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Sluift/Terminal.h')
-rw-r--r--Sluift/Terminal.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/Sluift/Terminal.h b/Sluift/Terminal.h
new file mode 100644
index 0000000..2d5e41b
--- /dev/null
+++ b/Sluift/Terminal.h
@@ -0,0 +1,35 @@
+/*
+ * Copyright (c) 2013 Remko Tronçon
+ * Licensed under the GNU General Public License.
+ * See the COPYING file for more information.
+ */
+
+#pragma once
+
+#include <string>
+#include <boost/optional/optional_fwd.hpp>
+
+namespace Swift {
+ class Completer;
+
+ class Terminal {
+ public:
+ Terminal();
+ virtual ~Terminal();
+
+ Completer* getCompleter() const {
+ return completer;
+ }
+
+ void setCompleter(Completer* completer) {
+ this->completer = completer;
+ }
+
+ virtual boost::optional<std::string> readLine(const std::string& prompt) = 0;
+ virtual void addToHistory(const std::string& command) = 0;
+ virtual void printError(const std::string& message) = 0;
+
+ private:
+ Completer* completer;
+ };
+}