1 #ifndef CONSOLE_H
2 #define CONSOLE_H
3
4 #include <iostream>
5 #include <termios.h>
6
7 namespace Console {
8 int getch ();
9 void getpass (std::string &);
10 };
11 #endif