CAS/Console.hpp
Lauchmelder b909747dca
Add files via upload
Added better Ans support
Added Pi and e
Improved decimal numbers
Added help page, accesible via <help>
2018-09-30 00:05:44 +02:00

31 lines
742 B
C++

#pragma once
#include <string>
class Console
{
public:
///////////////////////////////////////////////////////////
/// \brief Calls every important process functions
///
///////////////////////////////////////////////////////////
static void run();
private:
static std::string input;
///////////////////////////////////////////////////////////
/// \brief Waits for user input and writes it into a variable
///
///////////////////////////////////////////////////////////
static void awaitInput();
///////////////////////////////////////////////////////////
/// \brief Takes input and manages it
///
///////////////////////////////////////////////////////////
static void handleInput();
};