BluezQt

objectmanageradaptor.cpp
1 /*
2  * BluezQt - Asynchronous Bluez wrapper library
3  *
4  * SPDX-FileCopyrightText: 2019 Manuel Weichselbaumer <[email protected]>
5  *
6  * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
7  */
8 
9 #include "objectmanageradaptor.h"
10 #include "gattapplication.h"
11 #include "gattapplication_p.h"
12 
13 namespace BluezQt
14 {
15 ObjectManagerAdaptor::ObjectManagerAdaptor(QObject *parent)
16  : QDBusAbstractAdaptor(parent)
17  , m_gattApplication(qobject_cast<GattApplication *>(parent))
18 {
19 }
20 
21 DBusManagerStruct ObjectManagerAdaptor::GetManagedObjects()
22 {
23  if (m_gattApplication) {
24  return m_gattApplication->d->getManagedObjects();
25  }
26 
27  return {};
28 }
29 
30 } // namespace BluezQt
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Tue Jun 6 2023 04:05:57 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.