feat: implementation of the major feature of dbus service

Log:
Signed-off-by: ComixHe <heyuming@deepin.org>
This commit is contained in:
ComixHe
2023-07-24 14:12:59 +08:00
committed by Comix
parent 839383ecae
commit fe284e78b6
30 changed files with 1446 additions and 156 deletions

View File

@ -1,6 +1,15 @@
// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
#include "global.h"
bool registerObjectToDbus(QObject *, const QString &, const QString &)
bool registerObjectToDBus(QObject *, const QString &, const QString &)
{
return true;
}
void unregisterObjectFromDBus(const QString &)
{
return;
}