| Home · Modules · Classes · Namespaces · Functions |
The QxtFifo class provides a simple loopback QIODevice. More...
#include <QxtFifo>
Inherits QIODevice.
The QxtFifo class provides a simple loopback QIODevice.
read and write to the same object emits a readyRead Signal. useful for loopback tests where QBuffer does not work.
QxtFifo fifo;
QTextStream (&fifo)<<QString("foo");
QString a;
QTextStream(&fifo)>>a;
qDebug()<<a;
Constructs a new QxtFifo with parent.
| Copyright © 2007-2011 Qxt Foundation |
Qxt 0.6.2 |