File indexing completed on 2025-01-19 06:44:37
0001 /* 0002 * BluezQt - Asynchronous Bluez wrapper library 0003 * 0004 * SPDX-FileCopyrightText: 2018 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 #ifndef BLUEZQT_MEDIA_P_H 0010 #define BLUEZQT_MEDIA_P_H 0011 0012 #include "bluezmedia1.h" 0013 0014 namespace BluezQt 0015 { 0016 typedef org::bluez::Media1 BluezMedia; 0017 0018 class MediaPrivate 0019 { 0020 public: 0021 QString m_path; 0022 BluezMedia *m_bluezMedia = nullptr; 0023 }; 0024 0025 } // namespace BluezQt 0026 0027 #endif // BLUEZQT_MEDIA_P_H