Fixed bug with removing tracks from another playlist. Implemented adding track to...
[someplayer] / src / playlistdialog.h
diff --git a/src/playlistdialog.h b/src/playlistdialog.h
new file mode 100644 (file)
index 0000000..89758e0
--- /dev/null
@@ -0,0 +1,26 @@
+#ifndef PLAYLISTDIALOG_H
+#define PLAYLISTDIALOG_H
+
+#include <QDialog>
+
+namespace Ui {
+    class PlaylistDialog;
+}
+
+class PlaylistDialog : public QDialog
+{
+    Q_OBJECT
+
+public:
+    explicit PlaylistDialog(QList<QString> playlistNames, QWidget *parent = 0);
+    ~PlaylistDialog();
+
+    QList<QString> selected();
+
+private:
+    Ui::PlaylistDialog *ui;
+
+private slots:
+};
+
+#endif // PLAYLISTDIALOG_H