CAS/Console.hpp

31 lines
742 B
C++
Raw Normal View History

2018-09-29 20:50:11 +00:00
#pragma once
#include <string>
2018-09-29 20:50:11 +00:00
class Console
{
public:
///////////////////////////////////////////////////////////
/// \brief Calls every important process functions
///
///////////////////////////////////////////////////////////
static void run();
private:
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();
};