summaryrefslogtreecommitdiffstats
path: root/examples/mediaplayer/songdata.h
blob: 0e2a64496f9eb6a3aea502474c85281f9acaf472 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/****************************************************************************
**
** Copyright (C) 2008-$THISYEAR$ $TROLLTECH$. All rights reserved.
**
** This file is part of the SCXML project on Trolltech Labs.
**
** $TROLLTECH_GPL_LICENSE$
**
****************************************************************************/
#ifndef SONGDATA_H
#define SONGDATA_H

#include <QStringList>

struct SongData
{
    QString url;
    QString title;
    QString album;
    QString artist;
    QStringList genres;
    int trackNumber;
};
#endif