#include <CArchConsoleWindows.h>
Inherits IArchConsole.
Inheritance diagram for CArchConsoleWindows:
Public Member Functions | |
CArchConsoleWindows (void *) | |
virtual void | openConsole (const char *title) |
Open the console. | |
virtual void | closeConsole () |
Close the console. | |
virtual void | showConsole (bool showIfEmpty) |
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 28 of file CArchConsoleWindows.h.
|
Close the console. Close the console. Calling this method on an already closed console must have no effect. Implements IArchConsole. Definition at line 96 of file CArchConsoleWindows.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 116 of file CArchConsoleWindows.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 89 of file CArchConsoleWindows.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 103 of file CArchConsoleWindows.cpp. |
|
Write to the console. Writes the given string to the console, opening it if necessary. Implements IArchConsole. Definition at line 109 of file CArchConsoleWindows.cpp. |