diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2018-11-13 21:37:19 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2018-11-13 21:37:19 +0000 |
| commit | cd326acf90ee9c34b8d3609d6ecabbdc8b0cf6fb (patch) | |
| tree | 9f43024cda37cf4b9da72ea23fe35807d032ca71 /src/plugins/Effect/monotostereo/effectmonotostereofactory.h | |
| parent | 7f9f355b82009f56ff7bded0093a2d1712e2f950 (diff) | |
| download | qmmp-cd326acf90ee9c34b8d3609d6ecabbdc8b0cf6fb.tar.gz qmmp-cd326acf90ee9c34b8d3609d6ecabbdc8b0cf6fb.tar.bz2 qmmp-cd326acf90ee9c34b8d3609d6ecabbdc8b0cf6fb.zip | |
added mono to stereo converter
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@8424 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Effect/monotostereo/effectmonotostereofactory.h')
| -rw-r--r-- | src/plugins/Effect/monotostereo/effectmonotostereofactory.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/plugins/Effect/monotostereo/effectmonotostereofactory.h b/src/plugins/Effect/monotostereo/effectmonotostereofactory.h new file mode 100644 index 000000000..ee1ddc9f1 --- /dev/null +++ b/src/plugins/Effect/monotostereo/effectmonotostereofactory.h @@ -0,0 +1,45 @@ +/*************************************************************************** + * Copyright (C) 2018 by Ilya Kotov * + * forkotov02@ya.ru * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program 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 General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ +#ifndef EFFECTMONOTOSTEREOFACTORY_H +#define EFFECTMONOTOSTEREOFACTORY_H + +#include <QObject> +#include <qmmp/effectfactory.h> +#include <qmmp/effect.h> + +/** + @author Ilya Kotov <forkotov02@ya.ru> +*/ +class EffectMonoToStereoFactory : public QObject, public EffectFactory +{ +Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.EffectFactoryInterface.1.0") +Q_INTERFACES(EffectFactory) + +public: + const EffectProperties properties() const; + Effect *create(); + void showSettings(QWidget *parent); + void showAbout(QWidget *parent); + QString translation() const; +}; + + +#endif |
