All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines
A stream directed to stdout or stderr. More...
#include <StandardStream.h>
Public Member Functions | |
virtual ClassId | classId () const |
StandardStream (FILE *fileHandle) | |
Protected Member Functions | |
virtual void | flushStream () |
virtual void | sendToStream (const QString &val) |
A stream directed to stdout or stderr.
Full description of class still missing
QGpCoreTools::StandardStream::StandardStream | ( | FILE * | fileHandle | ) |
: AbstractStream(), _s(fileHandle, QIODevice::WriteOnly) { _s.setCodec("UTF-8"); }
virtual ClassId QGpCoreTools::StandardStream::classId | ( | ) | const [inline, virtual] |
Implements QGpCoreTools::AbstractStream.
{return StandardId;}
virtual void QGpCoreTools::StandardStream::flushStream | ( | ) | [inline, protected, virtual] |
Implements QGpCoreTools::AbstractStream.
{_s.flush();}
virtual void QGpCoreTools::StandardStream::sendToStream | ( | const QString & | val | ) | [inline, protected, virtual] |
Implements QGpCoreTools::AbstractStream.
{_s << val;}