File indexing completed on 2024-05-05 04:48:34

0001 /****************************************************************************************
0002  * Copyright (c) 2010 Sergey Ivanov <123kash@gmail.com>                                 *
0003  * Copyright (c) 2013 Alberto Villa <avilla@FreeBSD.org>                                *
0004  *                                                                                      *
0005  * This program is free software; you can redistribute it and/or modify it under        *
0006  * the terms of the GNU General Public License as published by the Free Software        *
0007  * Foundation; either version 2 of the License, or (at your option) any later           *
0008  * version.                                                                             *
0009  *                                                                                      *
0010  * This program is distributed in the hope that it will be useful, but WITHOUT ANY      *
0011  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A      *
0012  * PARTICULAR PURPOSE. See the GNU General Public License for more details.             *
0013  *                                                                                      *
0014  * You should have received a copy of the GNU General Public License along with         *
0015  * this program.  If not, see <http://www.gnu.org/licenses/>.                           *
0016  ****************************************************************************************/
0017 
0018 #ifndef MUSICBRAINZMETA_H
0019 #define MUSICBRAINZMETA_H
0020 
0021 #include <QString>
0022 
0023 namespace MusicBrainz
0024 {
0025     static const QString ARTISTID       = "mb:ArtistID";
0026     static const QString RELEASEGROUPID = "mb:ReleaseGroupID";
0027     static const QString RELEASEID      = "mb:ReleaseID";
0028     static const QString RELEASELIST    = "mb:ReleaseList";
0029     static const QString TRACKCOUNT     = "mb:TrackCount";
0030     static const QString TRACKID        = "mb:TrackID";
0031     static const QString TRACKINFO      = "mb:TrackInfo";
0032 
0033     static const QString MUSICBRAINZ    = "mb:musicbrainz";
0034     static const QString MUSICDNS       = "mb:musicdns";
0035 
0036     static const QString SIMILARITY     = "mb:similarity";
0037     static const qreal   MINSIMILARITY  = 0.6;
0038 }
0039 
0040 #endif // MUSICBRAINZMETA_H