db_bridge/include/console.hpp
author Markus Bröker <mbroeker@largo.dyndns.tv>
Tue, 09 Feb 2010 08:38:32 +0100
changeset 110 e1bc09732fa3
parent 65 76514757b0d6
permissions -rw-r--r--
Proper location of glassfish 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