aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Output/qtmultimedia/settingsdialog.ui
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2018-06-17 13:25:57 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2018-06-17 13:25:57 +0000
commit66fdb7a1576acf0ac547c32601e4adbd925b3d71 (patch)
treecadf8a4566842d6df5760f7c64d91b085ef25b0d /src/plugins/Output/qtmultimedia/settingsdialog.ui
parenta9a504beef770e2efc514d768712c37bf9e5fb1c (diff)
downloadqmmp-66fdb7a1576acf0ac547c32601e4adbd925b3d71.tar.gz
qmmp-66fdb7a1576acf0ac547c32601e4adbd925b3d71.tar.bz2
qmmp-66fdb7a1576acf0ac547c32601e4adbd925b3d71.zip
removed unneeded includes (Matteo Cypriani, fixes #963)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@8041 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Output/qtmultimedia/settingsdialog.ui')
0 files changed, 0 insertions, 0 deletions
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 REPLAYGAINREADER_H #define REPLAYGAINREADER_H #include <QMap> #include <QString> #include <taglib/xiphcomment.h> #include <qmmp/qmmp.h> /** @author Ilya Kotov <forkotov02@hotmail.ru> */ class ReplayGainReader { public: ReplayGainReader(const QString &path); QMap <Qmmp::ReplayGainKey, double> replayGainInfo() const; private: void readVorbisComment(TagLib::Ogg::XiphComment *comment); void setValue(Qmmp::ReplayGainKey key, QString value); QMap <Qmmp::ReplayGainKey, double> m_values; }; #endif // REPLAYGAINREADER_H