mirror of
https://github.com/YACReader/yacreader
synced 2025-07-20 14:04:40 -04:00
en macosx se usa el folder del sistema en la sidebar
This commit is contained in:
26
YACReaderLibrary/yacreader_local_server.h
Normal file
26
YACReaderLibrary/yacreader_local_server.h
Normal 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
|
Reference in New Issue
Block a user