summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/libmad/libmadpluginimpl.h
Unidiff
Diffstat (limited to 'core/multimedia/opieplayer/libmad/libmadpluginimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/libmad/libmadpluginimpl.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/core/multimedia/opieplayer/libmad/libmadpluginimpl.h b/core/multimedia/opieplayer/libmad/libmadpluginimpl.h
index 8ad4956..2c5ed3b 100644
--- a/core/multimedia/opieplayer/libmad/libmadpluginimpl.h
+++ b/core/multimedia/opieplayer/libmad/libmadpluginimpl.h
@@ -11,43 +11,42 @@
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20#ifndef LIBMAD_PLUGIN_IMPL_H 20#ifndef LIBMAD_PLUGIN_IMPL_H
21#define LIBMAD_PLUGIN_IMPL_H 21#define LIBMAD_PLUGIN_IMPL_H
22 22
23 23#include <qpe/mediaplayerplugininterface.h>
24//#include <qpe/mediaplayerplugininterface.h>
25#include "../mediaplayerplugininterface.h"
26 24
27 25
28class LibMadPlugin; 26class LibMadPlugin;
29 27
30 28
31class LibMadPluginImpl : public MediaPlayerPluginInterface 29class LibMadPluginImpl : public MediaPlayerPluginInterface
32{ 30{
33public: 31public:
34 LibMadPluginImpl(); 32 LibMadPluginImpl();
35 virtual ~LibMadPluginImpl(); 33 virtual ~LibMadPluginImpl();
36 34
37#ifndef QT_NO_COMPONENT 35#ifndef QT_NO_COMPONENT
38 36
39 QRESULT queryInterface( const QUuid&, QUnknownInterface** ); 37 QRESULT queryInterface( const QUuid&, QUnknownInterface** );
40 Q_REFCOUNT 38 Q_REFCOUNT
41 39
42#endif 40#endif
43 41
44 virtual MediaPlayerDecoder *decoder(); 42 virtual MediaPlayerDecoder *decoder();
45 virtual MediaPlayerEncoder *encoder(); 43 virtual MediaPlayerEncoder *encoder();
44
46private: 45private:
47 LibMadPlugin *libmadplugin; 46 LibMadPlugin *libmadplugin;
48 ulong ref; 47 ulong ref;
49}; 48};
50 49
51 50
52#endif 51#endif
53 52