summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Sluift/StandardTerminal.cpp')
-rw-r--r--Sluift/StandardTerminal.cpp25
1 files changed, 13 insertions, 12 deletions
diff --git a/Sluift/StandardTerminal.cpp b/Sluift/StandardTerminal.cpp
index 6e4767d..1378346 100644
--- a/Sluift/StandardTerminal.cpp
+++ b/Sluift/StandardTerminal.cpp
@@ -1,15 +1,16 @@
/*
- * Copyright (c) 2013 Isode Limited.
+ * Copyright (c) 2013-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#include <Sluift/StandardTerminal.h>
-#include <boost/optional.hpp>
#include <iostream>
#include <stdexcept>
+#include <boost/optional.hpp>
+
using namespace Swift;
StandardTerminal::StandardTerminal() {
@@ -19,19 +20,19 @@ StandardTerminal::~StandardTerminal() {
}
void StandardTerminal::printError(const std::string& message) {
- std::cout << message << std::endl;
+ std::cout << message << std::endl;
}
boost::optional<std::string> StandardTerminal::readLine(const std::string& prompt) {
- std::cout << prompt << std::flush;
- std::string input;
- if (!std::getline(std::cin, input)) {
- if (std::cin.eof()) {
- return boost::optional<std::string>();
- }
- throw std::runtime_error("Input error");
- }
- return input;
+ std::cout << prompt << std::flush;
+ std::string input;
+ if (!std::getline(std::cin, input)) {
+ if (std::cin.eof()) {
+ return boost::optional<std::string>();
+ }
+ throw std::runtime_error("Input error");
+ }
+ return input;
}
void StandardTerminal::addToHistory(const std::string&) {