modificado el estilo de los splitters y la toolbar de comics

This commit is contained in:
Luis Ángel San Martín
2013-05-26 18:47:37 +02:00
commit 754953cc30
485 changed files with 43643 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