Implemented directory scanning and adding tracks to library
[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         };
9         namespace Storage {
10         };
11 };
12
13 // common includes
14
15 #include <QString>
16 #include <QStringList>
17 #include <QList>
18 #include <QMap>
19 #include <QUrl>
20
21 #define _DYNAMIC_PLAYLIST_MAX_COUNT_ 50
22
23 #endif