Sayonara Player
typedefs.h
1 /* typedefs.h */
2 
3 /* Copyright (C) 2011-2017 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 
28 class QByteArray;
29 class QString;
30 class QStringList;
31 template <typename A, typename B> struct QPair;
32 template <typename A, typename B> class QMap;
33 template <typename T> class QList;
34 
40 using IntList=QList<int>;
41 using IdList=QList<int>;
42 using IdxList=QList<int> ;
43 using BoolList=QList<bool> ;
44 using Id=int32_t;
45 using ArtistId=Id;
46 using AlbumId=Id;
47 using TrackID=Id;
50 using IdSet=Util::Set<Id>;
51 using LibraryId=int8_t;
52 using DbId=uint8_t;
53 using Byte=uint8_t;
54 using Disc=uint8_t;
55 using Rating=uint8_t;
56 using Seconds=int32_t;
57 using MilliSeconds=int64_t;
58 using MicroSeconds=int64_t;
59 using NanoSeconds=int64_t;
60 using Bitrate=uint32_t;
61 using Filesize=uint32_t;
62 
63 template<typename K, typename V>
64 using PairList = QList<QPair<K,V>>;
65 
66 #endif
Definition: typedefs.h:31
A set structure. Inherited from std::set with some useful methods. For integer and String this set is...
Definition: Set.h:35
Definition: org_mpris_media_player2_adaptor.h:21
Definition: org_mpris_media_player2_adaptor.h:20