/* * BluezQt - Asynchronous BlueZ wrapper library * * SPDX-FileCopyrightText: 2019 Manuel Weichselbaumer * * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL */ #ifndef BLUEZQT_GATTSERVICE_P_H #define BLUEZQT_GATTSERVICE_P_H #include namespace BluezQt { class GattServicePrivate { public: GattServicePrivate(const QString &uuid, bool isPrimary, const QString &appPath); QString m_uuid; bool m_isPrimary; QDBusObjectPath m_objectPath; }; } // namespace BluezQt #endif