2018-09-29 20:50:11 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-09-29 22:05:44 +00:00
|
|
|
#include <string>
|
2018-09-29 20:50:11 +00:00
|
|
|
|
|
|
|
class Console
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
/// \brief Calls every important process functions
|
|
|
|
///
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
static void run();
|
|
|
|
|
|
|
|
private:
|
2018-09-29 22:05:44 +00:00
|
|
|
static std::string input;
|
2018-09-29 20:50:11 +00:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
/// \brief Waits for user input and writes it into a variable
|
|
|
|
///
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
static void awaitInput();
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
/// \brief Takes input and manages it
|
|
|
|
///
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
static void handleInput();
|
|
|
|
};
|
|
|
|
|