#ifndef CONSOLE_H #define CONSOLE_H #include <iostream> #include <termios.h> namespace Console { int getch (); void getpass (std::string &); }; #endif