summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/modplug/modpluginimpl.cpp
Unidiff
Diffstat (limited to 'core/multimedia/opieplayer/modplug/modpluginimpl.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/modplug/modpluginimpl.cpp60
1 files changed, 60 insertions, 0 deletions
diff --git a/core/multimedia/opieplayer/modplug/modpluginimpl.cpp b/core/multimedia/opieplayer/modplug/modpluginimpl.cpp
new file mode 100644
index 0000000..6e64e76
--- a/dev/null
+++ b/core/multimedia/opieplayer/modplug/modpluginimpl.cpp
@@ -0,0 +1,60 @@
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
20#include "modplugin.h"
21#include "modpluginimpl.h"
22
23ModPluginImpl::ModPluginImpl()
24 :m_plugin( 0 ), ref( 0 )
25{
26}
27
28ModPluginImpl::~ModPluginImpl()
29{
30 delete m_plugin;
31}
32
33#ifndef QT_NO_COMPONENT
34
35QRESULT ModPluginImpl::queryInterface( const QUuid &uuid, QUnknownInterface **iface )
36{
37 *iface = 0;
38 if ( ( uuid == IID_QUnknown ) || ( uuid == IID_MediaPlayerPlugin ) )
39 *iface = this, (*iface)->addRef();
40 return QS_OK;
41}
42
43Q_EXPORT_INTERFACE()
44{
45 Q_CREATE_INSTANCE( ModPluginImpl )
46}
47
48#endif
49
50MediaPlayerDecoder *ModPluginImpl::decoder()
51{
52 if ( !m_plugin )
53 m_plugin = new ModPlugin;
54 return m_plugin;
55}
56
57MediaPlayerEncoder *ModPluginImpl::encoder()
58{
59 return 0;
60}