Issue #15 Added CDataLinkDBus, an implementation for sharing state between processes via DBus

This commit is contained in:
Mat Sutcliffe
2019-02-26 01:51:50 +00:00
parent 7df7de7f07
commit 2ddc5d51f7
17 changed files with 1163 additions and 2 deletions

View File

@@ -47,10 +47,8 @@ namespace BlackMisc
//! For each signal in parent, attempt to connect to it an interface signal of the same name.
//! \see BLACK_NO_RELAY
//! \deprecated KB 2018-08 this seems to be not used anymore and might be removed
void relayParentSignals()
{
Q_ASSERT_X(false, Q_FUNC_INFO, "crosscheck if still used");
const QMetaObject *metaObject = this->parent()->metaObject();
const QMetaObject *superMetaObject = metaObject;
while (strcmp(superMetaObject->superClass()->className(), "QObject") != 0) { superMetaObject = superMetaObject->superClass(); }