diff --git a/db_bridge/include/console.h b/db_bridge/include/console.h new file mode 100644 --- /dev/null +++ b/db_bridge/include/console.h @@ -0,0 +1,11 @@ +#ifndef CONSOLE_H +#define CONSOLE_H + +#include +#include + +namespace Console { + int getch (); + void getpass (std::string &); +}; +#endif