You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
300 B
C
19 lines
300 B
C
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
|
|
|
|
#define MUSICLIST_ORI_ALBUM 0
|
|
#define MUSICLIST_ORI_TRACK 1
|
|
|
|
#define MUSICLIST_NEW_ALBUM 2
|
|
#define MUSICLIST_NEW_TRACK 3
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
#define myDebug qDebug() << __FILE__ << "(" << __LINE__ << ") - " << __PRETTY_FUNCTION__ << ":"
|
|
|
|
|
|
#endif // COMMON_H
|