#include <CArchConsoleUnix.h>
Inherits IArchConsole.
Inheritance diagram for CArchConsoleUnix:
Public Member Functions | |
CArchConsoleUnix (void *) | |
virtual void | openConsole (const char *title) |
Open the console. | |
virtual void | closeConsole () |
Close the console. | |
virtual void | showConsole (bool) |
Show the console. | |
virtual void | writeConsole (const char *) |
Write to the console. | |
virtual const char * | getNewlineForConsole () |
Returns the newline sequence for the console. |
Definition at line 23 of file CArchConsoleUnix.h.
|
Close the console. Close the console. Calling this method on an already closed console must have no effect. Implements IArchConsole. Definition at line 40 of file CArchConsoleUnix.cpp. |
|
Returns the newline sequence for the console. Different consoles use different character sequences for newlines. This method returns the appropriate newline sequence for the console. Implements IArchConsole. Definition at line 58 of file CArchConsoleUnix.cpp. |
|
Open the console.
Opens the console for writing. The console is opened automatically on the first write so calling this method is optional. Uses Implements IArchConsole. Definition at line 34 of file CArchConsoleUnix.cpp. |
|
Show the console.
Causes the console to become visible. This generally only makes sense for a console in a graphical user interface. Other implementations will do nothing. Iff Implements IArchConsole. Definition at line 46 of file CArchConsoleUnix.cpp. |
|
Write to the console. Writes the given string to the console, opening it if necessary. Implements IArchConsole. Definition at line 52 of file CArchConsoleUnix.cpp. |