db_bridge/include/console.h
author Markus Bröker <mbroeker@largo.dyndns.tv>
Sat, 13 Dec 2008 17:58:15 +0100
changeset 22 0db9235d68d9
parent 21 403742321c65
permissions -rw-r--r--
mysql_db is untested because we have no sponsor with a mysql database committer: Markus Bröker <mbroeker@largo.homelinux.org>

#ifndef CONSOLE_H
#define CONSOLE_H

#ifdef WIN32
#define BS 127
#else
#define BS 127
#endif

#include <iostream>

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