kaudioplayer.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
#ifndef __KAUDIOPLAYER_H__
00024
#define __KAUDIOPLAYER_H__
00025
00026
#include <qobject.h>
00027
#include "kdelibs_export.h"
00028
00029
class KAudioPlayerPrivate;
00055
00056 class KDECORE_EXPORT KAudioPlayer :
public QObject {
00057 Q_OBJECT
00058
public:
00066 KAudioPlayer(
const QString& filename,
00067
QObject* parent = 0,
const char* name = 0 );
00068
00072 ~KAudioPlayer();
00073
00080
static void play(
const QString &filename);
00081
00082
public slots:
00088
void play();
00089
private:
00090 KAudioPlayerPrivate *d;
00091 };
00092
00093
#endif // __KAUDIOPLAYER_H__
This file is part of the documentation for kdecore Library Version 3.4.0.