db_bridge/include/console.h
changeset 19 933d86c1ff71
child 20 5fec678f931b
new file mode 100644
--- /dev/null
+++ b/db_bridge/include/console.h
@@ -0,0 +1,11 @@
+#ifndef CONSOLE_H
+#define CONSOLE_H
+
+#include <iostream>
+#include <termios.h>
+
+namespace Console {
+    int getch ();
+    void getpass (std::string &);
+};
+#endif