db_bridge/include/console.hpp
author Markus Bröker <mbroeker@largo.dyndns.tv>
Tue, 01 Jun 2010 13:13:34 +0200
changeset 128 efa226a4801e
parent 65 76514757b0d6
permissions -rw-r--r--
That's the proper way to use crypt.h 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