Simple implementation of a log which just prints the logs on std::cout and std::cerr. More...
#include <LogBinding.h>
Protected Member Functions | |
virtual void | implPrint (const std::stringstream &str) |
virtual void | implPrint (const char *str) |
virtual void | implPrintError (const std::stringstream &str) |
virtual void | implPrintError (const char *str) |
virtual void | implPrintWarn (const std::stringstream &str) |
virtual void | implPrintWarn (const char *str) |
virtual void | printNewLine (bool errorStream) |
Simple implementation of a log which just prints the logs on std::cout and std::cerr.
Definition at line 160 of file LogBinding.h.
virtual void GraspIt::StdLog::implPrint | ( | const std::stringstream & | str | ) | [inline, protected, virtual] |
Implements GraspIt::Log.
Definition at line 163 of file LogBinding.h.
virtual void GraspIt::StdLog::implPrint | ( | const char * | str | ) | [inline, protected, virtual] |
Implements GraspIt::Log.
Definition at line 176 of file LogBinding.h.
virtual void GraspIt::StdLog::implPrintError | ( | const std::stringstream & | str | ) | [inline, protected, virtual] |
Implements GraspIt::Log.
Definition at line 167 of file LogBinding.h.
virtual void GraspIt::StdLog::implPrintError | ( | const char * | str | ) | [inline, protected, virtual] |
Implements GraspIt::Log.
Definition at line 180 of file LogBinding.h.
virtual void GraspIt::StdLog::implPrintWarn | ( | const std::stringstream & | str | ) | [inline, protected, virtual] |
Implements GraspIt::Log.
Definition at line 171 of file LogBinding.h.
virtual void GraspIt::StdLog::implPrintWarn | ( | const char * | str | ) | [inline, protected, virtual] |
Implements GraspIt::Log.
Definition at line 184 of file LogBinding.h.
virtual void GraspIt::StdLog::printNewLine | ( | bool | errorStream | ) | [inline, protected, virtual] |
Subclasses which do NOT automatically make a new line in implPrint* functions need to implement the printing of a new line in this function.
errorStream | set to true if the new line is to be printed in the error stream. Otherwise is printed to the standard stream. |
Implements GraspIt::Log.
Definition at line 190 of file LogBinding.h.