Console access helper class. More...
#include <console.h>
Static Public Member Functions | |
Operations | |
static void | write (const std::string &text) |
Writes text to the console window. More... | |
template<class Arg1 > | |
static void | write (const std::string &format, Arg1 arg1) |
Write. More... | |
template<class Arg1 , class Arg2 > | |
static void | write (const std::string &format, Arg1 arg1, Arg2 arg2) |
Write. More... | |
template<class Arg1 , class Arg2 , class Arg3 > | |
static void | write (const std::string &format, Arg1 arg1, Arg2 arg2, Arg3 arg3) |
Write. More... | |
template<class Arg1 , class Arg2 , class Arg3 , class Arg4 > | |
static void | write (const std::string &format, Arg1 arg1, Arg2 arg2, Arg3 arg3, Arg4 arg4) |
Write. More... | |
template<class Arg1 , class Arg2 , class Arg3 , class Arg4 , class Arg5 > | |
static void | write (const std::string &format, Arg1 arg1, Arg2 arg2, Arg3 arg3, Arg4 arg4, Arg5 arg5) |
Write. More... | |
template<class Arg1 , class Arg2 , class Arg3 , class Arg4 , class Arg5 , class Arg6 > | |
static void | write (const std::string &format, Arg1 arg1, Arg2 arg2, Arg3 arg3, Arg4 arg4, Arg5 arg5, Arg6 arg6) |
Write. More... | |
template<class Arg1 , class Arg2 , class Arg3 , class Arg4 , class Arg5 , class Arg6 , class Arg7 > | |
static void | write (const std::string &format, Arg1 arg1, Arg2 arg2, Arg3 arg3, Arg4 arg4, Arg5 arg5, Arg6 arg6, Arg7 arg7) |
Write. More... | |
static void | write_line (const std::string &text) |
Writes text to the console window and then advances to a new line. More... | |
template<class Arg1 > | |
static void | write_line (const std::string &format, Arg1 arg1) |
Write line. More... | |
template<class Arg1 , class Arg2 > | |
static void | write_line (const std::string &format, Arg1 arg1, Arg2 arg2) |
Write line. More... | |
template<class Arg1 , class Arg2 , class Arg3 > | |
static void | write_line (const std::string &format, Arg1 arg1, Arg2 arg2, Arg3 arg3) |
Write line. More... | |
template<class Arg1 , class Arg2 , class Arg3 , class Arg4 > | |
static void | write_line (const std::string &format, Arg1 arg1, Arg2 arg2, Arg3 arg3, Arg4 arg4) |
Write line. More... | |
template<class Arg1 , class Arg2 , class Arg3 , class Arg4 , class Arg5 > | |
static void | write_line (const std::string &format, Arg1 arg1, Arg2 arg2, Arg3 arg3, Arg4 arg4, Arg5 arg5) |
Write line. More... | |
template<class Arg1 , class Arg2 , class Arg3 , class Arg4 , class Arg5 , class Arg6 > | |
static void | write_line (const std::string &format, Arg1 arg1, Arg2 arg2, Arg3 arg3, Arg4 arg4, Arg5 arg5, Arg6 arg6) |
Write line. More... | |
template<class Arg1 , class Arg2 , class Arg3 , class Arg4 , class Arg5 , class Arg6 , class Arg7 > | |
static void | write_line (const std::string &format, Arg1 arg1, Arg2 arg2, Arg3 arg3, Arg4 arg4, Arg5 arg5, Arg6 arg6, Arg7 arg7) |
Write line. More... | |
static void | wait_for_key () |
Block until a key is pressed in the console window. More... | |
Console access helper class.