Big commit:
[someplayer] / src / someplayer.h
1 #ifndef SOMEPLAYER
2 #define SOMEPLAYER
3
4 // common settings, constants and so on
5
6 namespace SomePlayer {
7         namespace DataObjects {
8                 class Track;
9                 class TrackMetadata;
10                 class TagResolver;
11                 class Playlist;
12                 class Library;
13         };
14         namespace Storage {
15         };
16         namespace Playback {
17         };
18 };
19
20 // common includes
21
22 #include <QObject>
23 #include <QString>
24 #include <QStringList>
25 #include <QList>
26 #include <QMap>
27 #include <QUrl>
28
29 #define _DYNAMIC_PLAYLIST_MAX_COUNT_ 50
30
31 #endif