remote_obj

This commit is contained in:
pokamest 2021-01-20 23:07:23 +03:00
parent 77f830acd5
commit 22b33a4f25
2 changed files with 10 additions and 1 deletions

View file

@ -1,4 +1,4 @@
QT += widgets core gui network xml QT += widgets core gui network xml remoteobjects
TARGET = AmneziaVPN TARGET = AmneziaVPN
TEMPLATE = app TEMPLATE = app
@ -102,3 +102,6 @@ macx {
LIBS += -framework Cocoa -framework ApplicationServices -framework CoreServices -framework Foundation -framework AppKit LIBS += -framework Cocoa -framework ApplicationServices -framework CoreServices -framework Foundation -framework AppKit
} }
REPC_REPLICA += ../communicator/communicator.rep

View file

@ -0,0 +1,6 @@
#include <QtCore>
class RpcServer
{
SLOT(executeProcess(const QString &program, const QStringList &args));
SIGNAL(sendMessage(const QByteArray &message));
};