FACT++  1.0
Console::Console ( const char *  name)

Instantiate a console stream. It will create a WindowLog object and immediatel switch off its output to the console. The default more is non-continous.

Parameters
nameThe name of the program passed to the Readline constructor

Definition at line 35 of file Console.cc.

References fLogI, fLogO, WindowLog::SetBacklog(), and WindowLog::SetNullOutput().

35  : Readline(name), fContinous(false)
36 {
39  fLogO.SetBacklog(true);
40  fLogI.SetBacklog(true);
41 }
bool fContinous
Definition: Console.h:40
void SetNullOutput(bool n=true)
Switch on or off any physical output to the screen (cout or fWindow)
Definition: WindowLog.h:137
WindowLog fLogI
Definition: Console.h:38
Readline(const char *prgname)
Definition: Readline.cc:105
WindowLog fLogO
Definition: Console.h:37
void SetBacklog(bool n=true)
Switch on or off any storage in the backlog.
Definition: WindowLog.h:141

+ Here is the call graph for this function: