A?adido el uso 7z.dll en lugar de 7z.exe en el visor

This commit is contained in:
Luis Ángel San Martín
2013-07-14 17:43:38 +02:00
commit ff17d8ef1f
634 changed files with 50442 additions and 0 deletions

View File

@ -0,0 +1,26 @@
#ifndef YACREADER_LOCAL_SERVER_H
#define YACREADER_LOCAL_SERVER_H
#include <QObject>
class QLocalServer;
class YACReaderLocalServer : public QObject
{
Q_OBJECT
public:
explicit YACReaderLocalServer(QObject *parent = 0);
signals:
public slots:
bool isListening();
void sendResponse();
static bool isRunning();
private:
QLocalServer * localServer;
};
#endif // YACREADER_LOCAL_SERVER_H