File indexing completed on 2024-09-08 03:36:18
0001 /* 0002 * BluezQt - Asynchronous Bluez wrapper library 0003 * 0004 * SPDX-FileCopyrightText: 2019 Manuel Weichselbaumer <mincequi@web.de> 0005 * 0006 * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 0007 */ 0008 0009 #include "gattmanager_p.h" 0010 #include "utils.h" 0011 0012 namespace BluezQt 0013 { 0014 GattManagerPrivate::GattManagerPrivate(const QString &path) 0015 : m_dbusInterface(Strings::orgBluez(), path, DBusConnection::orgBluez()) 0016 { 0017 } 0018 0019 GattManagerPrivate::~GattManagerPrivate() 0020 { 0021 } 0022 0023 } // namespace BluezQt