| 11 | // ***************************************** Constructors and file settings |
| 12 | |
| 13 | Chunks::Chunks(QObject *parent): QObject(parent) |
| 14 | { |
| 15 | QBuffer *buf = new QBuffer(this); |
| 16 | setIODevice(*buf); |
| 17 | } |
| 18 | |
| 19 | Chunks::Chunks(QIODevice &ioDevice, QObject *parent): QObject(parent) |
| 20 | { |
nothing calls this directly
no outgoing calls
no test coverage detected