db_bridge/include/console.hpp
author Markus Bröker <mbroeker@largo.dyndns.tv>
Thu, 28 May 2009 16:51:52 +0200
changeset 96 810acedf60d8
parent 65 76514757b0d6
permissions -rw-r--r--
alpha_beta: memory leaks After fixing all the memory leaks in this piece code, i can finally go further to implement a better KI. 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