Fixed bug with removing tracks from another playlist. Implemented adding track to...
[someplayer] / src / playlistdialog.h
1 #ifndef PLAYLISTDIALOG_H
2 #define PLAYLISTDIALOG_H
3
4 #include <QDialog>
5
6 namespace Ui {
7     class PlaylistDialog;
8 }
9
10 class PlaylistDialog : public QDialog
11 {
12     Q_OBJECT
13
14 public:
15     explicit PlaylistDialog(QList<QString> playlistNames, QWidget *parent = 0);
16     ~PlaylistDialog();
17
18     QList<QString> selected();
19
20 private:
21     Ui::PlaylistDialog *ui;
22
23 private slots:
24 };
25
26 #endif // PLAYLISTDIALOG_H