struct CCL::System::IConsole
Overview
Console interface for character-mode applications. More…
#include <iconsole.h> struct IConsole: public CCL::Alert::IReporter { // methods virtual tbool CCL_API redirect (IConsole* console) = 0; virtual tbool CCL_API writeLine (StringRef text) = 0; virtual tbool CCL_API writeLine (const char* text) = 0; virtual tbool CCL_API readLine (String& text) = 0; };
Inherited Members
public: // methods virtual tresult CCL_API queryInterface (UIDRef iid, void** ptr) = 0; virtual unsigned int CCL_API retain () = 0; virtual unsigned int CCL_API release () = 0; virtual void CCL_API reportEvent (const Event& e) = 0; virtual void CCL_API setReportOptions (Severity minSeverity, int eventFormat) = 0;
Detailed Documentation
Console interface for character-mode applications.
Methods
virtual tbool CCL_API redirect (IConsole* console) = 0
Redirect to other console.
virtual tbool CCL_API writeLine (StringRef text) = 0
virtual tbool CCL_API writeLine (const char* text) = 0
Write ASCII-encoded C-String.
virtual tbool CCL_API readLine (String& text) = 0