mirror of
https://github.com/YACReader/yacreader
synced 2025-07-22 23:15:14 -04:00
corregida compilaci?n
This commit is contained in:
@ -1,6 +1,5 @@
|
||||
#include "yacreader_local_client.h"
|
||||
#include "yacreader_comic_library.h"
|
||||
#include "yacreader_comic_info_library.h"
|
||||
#include "comic_db.h"
|
||||
|
||||
#include <QLocalSocket>
|
||||
|
||||
@ -20,12 +19,12 @@ void YACReaderLocalClient::readMessage()
|
||||
|
||||
}
|
||||
|
||||
void YACReaderLocalClient::requestComicInfo(QString library, YACReaderComicLibrary & comic)
|
||||
void YACReaderLocalClient::requestComicInfo(QString library, ComicDB & comic)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void YACReaderLocalClient::sendComicInfo(QString library, YACReaderComicLibrary & comic)
|
||||
void YACReaderLocalClient::sendComicInfo(QString library, ComicDB & comic)
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include <QObject>
|
||||
|
||||
class QLocalSocket;
|
||||
class YACReaderComicLibrary;
|
||||
class ComicDB;
|
||||
|
||||
class YACReaderLocalClient : public QObject
|
||||
{
|
||||
@ -16,8 +16,8 @@ signals:
|
||||
|
||||
public slots:
|
||||
void readMessage();
|
||||
void requestComicInfo(QString library, YACReaderComicLibrary & comic);
|
||||
void sendComicInfo(QString library, YACReaderComicLibrary & comic);
|
||||
void requestComicInfo(QString library, ComicDB & comic);
|
||||
void sendComicInfo(QString library, ComicDB & comic);
|
||||
|
||||
private:
|
||||
QLocalSocket * localSocket;
|
||||
|
Reference in New Issue
Block a user