Solid
portablemediaplayer.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include "portablemediaplayer.h"
00023 #include "portablemediaplayer_p.h"
00024
00025 #include "soliddefs_p.h"
00026 #include <solid/ifaces/portablemediaplayer.h>
00027
00028 Solid::PortableMediaPlayer::PortableMediaPlayer(QObject *backendObject)
00029 : DeviceInterface(*new PortableMediaPlayerPrivate(), backendObject)
00030 {
00031 }
00032
00033 Solid::PortableMediaPlayer::~PortableMediaPlayer()
00034 {
00035
00036 }
00037
00038 QStringList Solid::PortableMediaPlayer::supportedProtocols() const
00039 {
00040 Q_D(const PortableMediaPlayer);
00041 return_SOLID_CALL(Ifaces::PortableMediaPlayer *, d->backendObject(), QStringList(), supportedProtocols());
00042 }
00043
00044 QStringList Solid::PortableMediaPlayer::supportedDrivers(QString protocol) const
00045 {
00046 Q_D(const PortableMediaPlayer);
00047 return_SOLID_CALL(Ifaces::PortableMediaPlayer *, d->backendObject(), QStringList(), supportedDrivers(protocol));
00048 }
00049
00050 QVariant Solid::PortableMediaPlayer::driverHandle(const QString &driver) const
00051 {
00052 Q_D(const PortableMediaPlayer);
00053 return_SOLID_CALL(Ifaces::PortableMediaPlayer *, d->backendObject(), QVariant(), driverHandle(driver));
00054 }
00055
00056 #include "portablemediaplayer.moc"