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

Instantiate a console stream. It will create a single WindowLog object which is returned as input and output stream.

Parameters
nameThe name of the program passed to the Readline constructor

Definition at line 236 of file Console.cc.

References fLogO, Readline::GetName(), ReadlineColor::PrintBootMsg(), WindowLog::SetBacklog(), and WindowLog::SetNullOutput().

236  : Readline(name)
237 {
238  fLogO.SetBacklog(false);
239  fLogO.SetNullOutput(false);
241 }
void SetNullOutput(bool n=true)
Switch on or off any physical output to the screen (cout or fWindow)
Definition: WindowLog.h:137
WindowLog fLogO
Definition: Console.h:10
Readline(const char *prgname)
Definition: Readline.cc:105
bool PrintBootMsg(std::ostream &out, const std::string &name, bool interactive=true)
std::string GetName() const
Definition: Readline.h:88
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: