db_bridge/include/console.hpp
author Markus Bröker <mbroeker@largo.dyndns.tv>
Sun, 26 Jul 2009 18:21:25 +0200
changeset 103 be3fe4a4f097
parent 65 76514757b0d6
permissions -rw-r--r--
Function Pointer Demo simplified It makes more sense to show the basic usage of fps 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