mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
19 lines
310 B
C++
19 lines
310 B
C++
#include "SyncDebug.h"
|
|
|
|
SyncDebug::SyncDebug(QObject *parent):
|
|
QIODevice(parent)
|
|
{
|
|
open(ReadWrite);
|
|
}
|
|
|
|
qint64 SyncDebug::readData(char *data, qint64 length )
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
qint64 SyncDebug::writeData(const char* data, qint64 length)
|
|
{
|
|
qDebug() << data;
|
|
emit debugMessage(QString(data));
|
|
}
|