Collection of little utility classes and helpers.
More...
Detailed Description
Collection of little utility classes and helpers.
Function Documentation
int OpenMesh::Utils::getch |
( |
void |
|
) |
|
A blocking single character input from stdin.
- Returns:
- Character, or -1 if an input error occurs.
- See also:
- getche(), kbhit()
int OpenMesh::Utils::getche |
( |
void |
|
) |
|
A blocking single character input from stdin with echo.
- Returns:
- Character, or -1 if an input error occurs.
- See also:
- getch(), kbhit()
int OpenMesh::Utils::kbhit |
( |
void |
|
) |
|
Check if characters a pending in stdin.
- Returns:
- Number of characters available to read.
- See also:
- getch(), getche()