From kde-commits Mon Oct 31 22:00:14 2011 From: Laszlo Papp Date: Mon, 31 Oct 2011 22:00:14 +0000 To: kde-commits Subject: [qtopenal] src: Add skeleton QALAbstractAudioDecoder class to the Message-Id: <20111031220014.C7D87A60B9 () git ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=132009846630513 Git commit 24e255fb0faf9e1f2507f3e0b18e08f72df5538c by Laszlo Papp. Committed on 01/11/2011 at 01:00. Pushed by lpapp into branch 'master'. Add skeleton QALAbstractAudioDecoder class to the project M +2 -0 src/CMakeLists.txt A +31 -0 src/qalabstractaudiodecoder.cpp [License: LGPL (v2.1+)] A +31 -0 src/qalabstractaudiodecoder.h [License: LGPL (v2.1+)] http://commits.kde.org/qtopenal/24e255fb0faf9e1f2507f3e0b18e08f72df5538c diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 048fffd..ff0d5cf 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -44,6 +44,7 @@ set(QTOPENAL_INCLUDES ) = set(QtOpenAL_SRCS + qalabstractaudiodecoder.cpp qalattributes.cpp qalbufferformat.cpp qalbufferqueue.cpp @@ -52,6 +53,7 @@ set(QtOpenAL_SRCS ) = set(QtOpenAL_HEADERS + qalabstractaudiodecoder.h qalattributes.h qalbufferformat.h qalbufferqueue.h diff --git a/src/qalabstractaudiodecoder.cpp b/src/qalabstractaudiodecoder.= cpp new file mode 100644 index 0000000..9519255 --- /dev/null +++ b/src/qalabstractaudiodecoder.cpp @@ -0,0 +1,31 @@ +/*************************************************************************= ***** + * This file is part of the QtOpenAL project + * Copyright (c) 2011 Laszlo Papp + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-13= 01 USA + */ + +#include "qalabstractaudiodecoder.h" + +#include + +QALAbstractAudioDecoder::QALAbstractAudioDecoder() +{ +} + +QALAbstractAudioDecoder::~QALAbstractAudioDecoder() +{ +} + diff --git a/src/qalabstractaudiodecoder.h b/src/qalabstractaudiodecoder.h new file mode 100644 index 0000000..3a004a6 --- /dev/null +++ b/src/qalabstractaudiodecoder.h @@ -0,0 +1,31 @@ +/*************************************************************************= ***** + * This file is part of the QtOpenAL project + * Copyright (c) 2011 Laszlo Papp + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-13= 01 USA + */ + +#include "q_openal_export.h" + +//class QString; + +class Q_OPENAL_EXPORT QALAbstractAudioDecoder +{ + //Q_DECLARE_PRIVATE(QALAbstractAudioDecoder) +public: + QALAbstractAudioDecoder(); + virtual ~QALAbstractAudioDecoder(); + +};