Console Operating System. More...
#include <deOSConsole.h>
Public Member Functions | |
Constructors and Destructors | |
| deOSConsole () | |
| Creates a new console operating system object. | |
| virtual | ~deOSConsole () |
| Cleans up the console operating system object. | |
Management | |
| virtual int | GetScreenWidth () |
| Retrieves the width of the screen. | |
| virtual int | GetScreenHeight () |
| Retrieves the height of the screen. | |
Casting | |
Safely casts the operating system object to a specific operating system object. Use only those cast functions and do not cast yourself. If the cast is not possible an exception has to be thrown. The default implementation of the cast functions is to throw an exception. Simply overwrite the matching cast function for your subclass with a simple 'return this;'. | |
| virtual deOSConsole * | CastToOSConsole () |
Console Operating System.
Supports operating systems or configurations only exposing a text console without any graphics support.
| deOSConsole::deOSConsole | ( | ) |
Creates a new console operating system object.
| virtual deOSConsole::~deOSConsole | ( | ) | [virtual] |
Cleans up the console operating system object.
| virtual deOSConsole* deOSConsole::CastToOSConsole | ( | ) | [virtual] |
Reimplemented from deOS.
| virtual int deOSConsole::GetScreenHeight | ( | ) | [virtual] |
Retrieves the height of the screen.
Implements deOS.
| virtual int deOSConsole::GetScreenWidth | ( | ) | [virtual] |
Retrieves the width of the screen.
Implements deOS.
1.7.2