Albert S
fe29641d0a
As it is no longer subject to sandboxing as a whole, it is not restricted and thus, should call these functions itself
22 righe
386 B
C++
22 righe
386 B
C++
#ifndef IPCSERVER_H
|
|
#define IPCSERVER_H
|
|
#include <QString>
|
|
#include <QLocalServer>
|
|
#include "ipc.h"
|
|
#include "filesaver.h"
|
|
class IpcServer : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
QLocalServer spawningServer;
|
|
SaveFileResult addFile(QString file);
|
|
private slots:
|
|
void spawnerNewConnection();
|
|
|
|
public:
|
|
IpcServer();
|
|
bool startSpawner(QString socketPath);
|
|
};
|
|
|
|
#endif // IPCSERVER_H
|