yacreader/YACReaderLibrary/yacreader_local_server.h
Luis Ángel San Martín efd004d2dd modificados los iconos del input de b?squeda
modificado el estilo de las titled toolbars
2013-06-15 11:35:36 +02:00

27 lines
451 B
C++

#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