yacreader/YACReaderLibrary/yacreader_local_server.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
522 B
C++

#ifndef YACREADER_LOCAL_SERVER_H
#define YACREADER_LOCAL_SERVER_H
#include <QObject>
class QLocalServer;
class ComicDB;
class YACReaderLocalServer : public QObject
{
Q_OBJECT
public:
explicit YACReaderLocalServer(QObject *parent = 0);
signals:
public slots:
bool isListening();
void sendResponse();
static bool isRunning();
void getComicInfo(quint64 libraryId, ComicDB & comic);
private:
QLocalServer * localServer;
};
#endif // YACREADER_LOCAL_SERVER_H