1/*
2 * BluezQt - Asynchronous Bluez wrapper library
3 *
4 * SPDX-FileCopyrightText: 2019 Manuel Weichselbaumer <mincequi@web.de>
5 *
6 * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
7 */
8
9#include "gattmanager_p.h"
10#include "utils.h"
11
12namespace BluezQt
13{
14GattManagerPrivate::GattManagerPrivate(const QString &path)
15 : m_dbusInterface(Strings::orgBluez(), path, DBusConnection::orgBluez())
16{
17}
18
19GattManagerPrivate::~GattManagerPrivate()
20{
21}
22
23} // namespace BluezQt
24

source code of bluez-qt/src/gattmanager_p.cpp