00001 /* This file is part of the KDE project 00002 Copyright (C) 2005-2006 Matthias Kretz <kretz@kde.org> 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Lesser General Public 00006 License as published by the Free Software Foundation; either 00007 version 2.1 of the License, or (at your option) version 3, or any 00008 later version accepted by the membership of KDE e.V. (or its 00009 successor approved by the membership of KDE e.V.), Nokia Corporation 00010 (or its successors, if any) and the KDE Free Qt Foundation, which shall 00011 act as a proxy defined in Section 6 of version 3 of the license. 00012 00013 This library is distributed in the hope that it will be useful, 00014 but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00016 Lesser General Public License for more details. 00017 00018 You should have received a copy of the GNU Lesser General Public 00019 License along with this library. If not, see <http://www.gnu.org/licenses/>. 00020 00021 */ 00022 #ifndef Phonon_ABSTRACTAUDIOOUTPUTBASE_H 00023 #define Phonon_ABSTRACTAUDIOOUTPUTBASE_H 00024 00025 #include "phonondefs.h" 00026 #include "phonon_export.h" 00027 #include "medianode.h" 00028 #include <QtCore/QObject> 00029 00030 QT_BEGIN_HEADER 00031 QT_BEGIN_NAMESPACE 00032 00033 namespace Phonon 00034 { 00035 class AbstractAudioOutputPrivate; 00036 00042 class PHONON_EXPORT AbstractAudioOutput : public QObject, public MediaNode 00043 { 00044 Q_OBJECT 00045 K_DECLARE_PRIVATE(AbstractAudioOutput) 00046 protected: 00047 AbstractAudioOutput(AbstractAudioOutputPrivate &dd, QObject *parent); 00048 public: 00049 ~AbstractAudioOutput(); 00050 }; 00051 } //namespace Phonon 00052 00053 QT_END_NAMESPACE 00054 QT_END_HEADER 00055 00056 // vim: sw=4 ts=4 tw=80 00057 #endif // Phonon_ABSTRACTAUDIOOUTPUTBASE_H