Sayonara Player
typedefs.h
1 /* typedefs.h */
2 
3 /* Copyright (C) 2011-2020 Michael Lugmair (Lucio Carreras)
4  *
5  * This file is part of sayonara player
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11 
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16 
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef TYPEDEFS_H
22 #define TYPEDEFS_H
23 
24 #include <cstdint>
25 #include "Utils/SetFwd.h"
26 #include "Utils/MetaData/MetaDataFwd.h"
27 #include <QMetaType>
28 
29 class QByteArray;
30 class QString;
31 class QStringList;
32 template <typename A, typename B> struct QPair;
33 template <typename A, typename B> class QMap;
34 template <typename T> class QList;
35 
41 using IntList=QList<int>;
42 using IdList=QList<int>;
43 using IdxList=QList<int> ;
44 using BoolList=QList<bool> ;
45 using Id=int32_t;
46 using ArtistId=Id;
47 using AlbumId=Id;
48 using TrackID=Id;
51 using IdSet=Util::Set<Id>;
52 using LibraryId=int8_t;
53 using DbId=uint8_t;
54 using Byte=uint8_t;
55 using Disc=uint8_t;
56 using TrackNum=uint16_t;
57 using Year=uint16_t;
58 using Seconds=int32_t;
59 using MilliSeconds=int64_t;
60 using MicroSeconds=int64_t;
61 using NanoSeconds=int64_t;
62 using Bitrate=uint32_t;
63 using Filesize=uint64_t;
64 
65 template<typename K, typename V>
66 using PairList = QList<QPair<K,V>>;
67 
68 enum class Rating : uint8_t
69 {
70  Zero=0,
71  One=1,
72  Two=2,
73  Three=3,
74  Four=4,
75  Five=5,
76  Last=6
77 };
78 
79 
80 Q_DECLARE_METATYPE(Rating)
81 
82 #endif
QPair
Definition: typedefs.h:32
Util::Set
A set structure. Inherited from std::set with some useful methods. For integer and String this set is...
Definition: Set.h:37
QList
Definition: EngineUtils.h:33
QMap
Definition: org_mpris_media_player2_adaptor.h:21