| 1 | /* |
| 2 | SPDX-FileCopyrightText: 2006 Davide Bettio <davide.bettio@kdemail.net> |
| 3 | SPDX-FileCopyrightText: 2007 Kevin Ottens <ervin@kde.org> |
| 4 | |
| 5 | SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
| 6 | */ |
| 7 | |
| 8 | #ifndef SOLID_PORTABLEMEDIAPLAYER_P_H |
| 9 | #define SOLID_PORTABLEMEDIAPLAYER_P_H |
| 10 | |
| 11 | #include "deviceinterface_p.h" |
| 12 | |
| 13 | namespace Solid |
| 14 | { |
| 15 | class PortableMediaPlayerPrivate : public DeviceInterfacePrivate |
| 16 | { |
| 17 | public: |
| 18 | PortableMediaPlayerPrivate() |
| 19 | : DeviceInterfacePrivate() |
| 20 | { |
| 21 | } |
| 22 | }; |
| 23 | } |
| 24 | |
| 25 | #endif |
| 26 | |