File indexing completed on 2024-04-28 15:17:56

0001 /*
0002  * BluezQt - Asynchronous Bluez wrapper library
0003  *
0004  * SPDX-FileCopyrightText: 2014 David Rosca <nowrep@gmail.com>
0005  *
0006  * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0007  */
0008 
0009 #ifndef BLUEZQT_PROFILE_P_H
0010 #define BLUEZQT_PROFILE_P_H
0011 
0012 #include <QVariantMap>
0013 
0014 namespace BluezQt
0015 {
0016 class ProfilePrivate
0017 {
0018 public:
0019     QVariantMap options;
0020 };
0021 
0022 } // namespace BluezQt
0023 
0024 #endif // BLUEZQT_PROFILE_P_H