yacreader/YACReader/yacreader_local_client.h
Luis Ángel San Martín e886f160cc load(path,atPage) added in viewer,render and comic classes
updated CHANGELOG
2013-07-16 21:50:02 +02:00

28 lines
539 B
C++

#ifndef YACREADER_LOCAL_CLIENT_H
#define YACREADER_LOCAL_CLIENT_H
#include <QObject>
class QLocalSocket;
class ComicDB;
class YACReaderLocalClient : public QObject
{
Q_OBJECT
public:
explicit YACReaderLocalClient(QObject *parent = 0);
signals:
public slots:
void readMessage();
bool requestComicInfo(quint64 libraryId, ComicDB & comic);
bool sendComicInfo(quint64 libraryId, ComicDB & comic);
private:
QLocalSocket * localSocket;
};
#endif // YACREADER_LOCAL_CLIENT_H