defuze.me
Client
|
00001 #ifndef EVENTPLAYLISTMODEL_HPP 00002 #define EVENTPLAYLISTMODEL_HPP 00003 00004 #include <QStandardItemModel> 00005 00006 #include "scheduler.hpp" 00007 00008 namespace Scheduler 00009 { 00010 00011 class EventPlaylistModel : public QStandardItemModel 00012 { 00013 public: 00014 EventPlaylistModel(); 00015 00016 private: 00017 QList<QString> playlists; 00018 QStandardItem *rootItem; 00019 QHash<QModelIndex, int> idByIndexes; 00020 }; 00021 00022 } 00023 00024 #endif // EVENTPLAYLISTMODEL_HPP