Warning, file /plasma/libksysguard/systemstats/DBusInterface.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     SPDX-FileCopyrightText: 2021 Arjen Hiemstra <ahiemstra@heimr.nl>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "DBusInterface.h"
0008 
0009 namespace KSysGuard
0010 {
0011 namespace SystemStats
0012 {
0013 DBusInterface::DBusInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent)
0014     : org::kde::ksystemstats(service, path, connection, parent)
0015 {
0016 }
0017 
0018 }
0019 
0020 }