fc9d1bd72817ca7e671d42ccde26c2111c788ee8
[vlc-remote] / vlcplaylistelementsimple.h
1 /*   VLC-REMOTE for MAEMO 5
2  *   Copyright (C) 2010 Schutz Sacha <istdasklar@gmail.com>
3  *   This program is free software; you can redistribute it and/or modify
4  *   it under the terms of the GNU General Public License version 2,
5  *   or (at your option) any later version, as published by the Free
6  *   Software Foundation
7  *
8  *   This program is distributed in the hope that it will be useful,
9  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
10  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  *   GNU General Public License for more details
12  *
13  *   You should have received a copy of the GNU General Public
14  *   License along with this program; if not, write to the
15  *   Free Software Foundation, Inc.,
16  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  */
18 #ifndef VLCPLAYLISTELEMENTSIMPLE_H
19 #define VLCPLAYLISTELEMENTSIMPLE_H
20
21 #include <QString>
22
23 struct VlcPlayListElementSimple {
24     int id; // vlc playlist item id
25     int depth; // how deep in the tree
26     bool playing; // currently playing item
27     QString type; // node or leaf
28     QString extension; // file extension
29     QString path; // Only used for leaf - repeat name otherwise
30     QString name; // name or metadata title if available
31 } ;
32
33 #endif // VLCPLAYLISTELEMENTSIMPLE_H