db_bridge/include/console.h
author Markus Bröker <mbroeker@largo.dyndns.tv>
Sat, 13 Dec 2008 17:58:11 +0100
changeset 19 933d86c1ff71
child 20 5fec678f931b
permissions -rw-r--r--
namespace console added for console tools, password entry and other stuff committer: Markus Bröker <mbroeker@largo.homelinux.org>

#ifndef CONSOLE_H
#define CONSOLE_H

#include <iostream>
#include <termios.h>

namespace Console {
    int getch ();
    void getpass (std::string &);
};
#endif