summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/modplug/modpluginimpl.h
Unidiff
Diffstat (limited to 'core/multimedia/opieplayer/modplug/modpluginimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/modplug/modpluginimpl.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/core/multimedia/opieplayer/modplug/modpluginimpl.h b/core/multimedia/opieplayer/modplug/modpluginimpl.h
new file mode 100644
index 0000000..c306a71
--- a/dev/null
+++ b/core/multimedia/opieplayer/modplug/modpluginimpl.h
@@ -0,0 +1,46 @@
1/* This file is part of the KDE project
2 Copyright (C) 2002 Simon Hausmann <hausmann@kde.org>
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; see the file COPYING. If not, write to
16 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA.
18*/
19#ifndef MOD_PLUGIN_IMPL_H
20#define MOD_PLUGIN_IMPL_H
21
22#include <qpe/mediaplayerplugininterface.h>
23
24class ModPlugin;
25
26class ModPluginImpl : public MediaPlayerPluginInterface
27{
28public:
29 ModPluginImpl();
30 virtual ~ModPluginImpl();
31#ifndef QT_NO_COMPONENT
32
33 QRESULT queryInterface( const QUuid &uuid, QUnknownInterface **iface );
34 Q_REFCOUNT
35
36#endif
37
38 virtual MediaPlayerDecoder *decoder();
39 virtual MediaPlayerEncoder *encoder();
40
41private:
42 ModPlugin *m_plugin;
43 ulong ref;
44};
45
46#endif