MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / InterCom

Method InterCom

gui/qt/ipc.cpp:7–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5#include <sys/types.h>
6
7InterCom::InterCom(QObject *parent) : QObject{parent} {
8 m_server = new QLocalServer();
9 m_socket = new QLocalSocket();
10 connect(m_server, &QLocalServer::newConnection, this, &InterCom::accepted);
11}
12
13InterCom::~InterCom() {
14 delete m_socket;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected