mirror of
https://github.com/YACReader/yacreader
synced 2025-06-04 01:28:55 -04:00
31 lines
707 B
C++
31 lines
707 B
C++
#include "yacreader_local_client.h"
|
|
#include "comic_db.h"
|
|
|
|
#include <QLocalSocket>
|
|
|
|
YACReaderLocalClient::YACReaderLocalClient(QObject *parent) :
|
|
QObject(parent)
|
|
{
|
|
localSocket = new QLocalSocket(this);
|
|
|
|
connect(localSocket, SIGNAL(readyRead()), this, SLOT(readMessage()));
|
|
/*connect(socket, SIGNAL(error(QLocalSocket::LocalSocketError)),
|
|
this, SLOT(displayError(QLocalSocket::LocalSocketError)));*/
|
|
}
|
|
|
|
//información de comic recibida...
|
|
void YACReaderLocalClient::readMessage()
|
|
{
|
|
|
|
}
|
|
|
|
void YACReaderLocalClient::requestComicInfo(QString library, ComicDB & comic)
|
|
{
|
|
|
|
}
|
|
|
|
void YACReaderLocalClient::sendComicInfo(QString library, ComicDB & comic)
|
|
{
|
|
|
|
}
|