mirror of
https://github.com/vicr123/theshell.git
synced 2025-01-23 04:11:49 -05:00
10 lines
317 B
C++
10 lines
317 B
C++
#include "dbussignals.h"
|
|
#include "theshell_adaptor.h"
|
|
|
|
DBusSignals::DBusSignals(QObject *parent) : QObject(parent)
|
|
{
|
|
new TheshellAdaptor(this);
|
|
QDBusConnection dbus = QDBusConnection::sessionBus();
|
|
dbus.registerObject("/org/thesuite/theshell", this);
|
|
dbus.registerService("org.thesuite.theshell");
|
|
}
|