File indexing completed on 2024-05-12 04:01:51

0001 /*
0002     SPDX-FileCopyrightText: 2006 Davide Bettio <davide.bettio@kdemail.net>
0003     SPDX-FileCopyrightText: 2007 Kevin Ottens <ervin@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0006 */
0007 
0008 #ifndef SOLID_PORTABLEMEDIAPLAYER_P_H
0009 #define SOLID_PORTABLEMEDIAPLAYER_P_H
0010 
0011 #include "deviceinterface_p.h"
0012 
0013 namespace Solid
0014 {
0015 class PortableMediaPlayerPrivate : public DeviceInterfacePrivate
0016 {
0017 public:
0018     PortableMediaPlayerPrivate()
0019         : DeviceInterfacePrivate()
0020     {
0021     }
0022 };
0023 }
0024 
0025 #endif