diff include/gui/pages/now_playing.h @ 80:825506f0e221

[UNFINISHED]: stuff
author Paper <mrpapersonic@gmail.com>
date Fri, 13 Oct 2023 13:15:19 -0400
parents c489dd4434af
children d02fdf1d6708
line wrap: on
line diff
--- a/include/gui/pages/now_playing.h	Thu Oct 12 11:31:39 2023 -0400
+++ b/include/gui/pages/now_playing.h	Fri Oct 13 13:15:19 2023 -0400
@@ -1,6 +1,7 @@
 #ifndef __gui__pages__now_playing_h
 #define __gui__pages__now_playing_h
 #include <QFrame>
+#include <unordered_map>
 
 class QStackedWidget;
 
@@ -10,7 +11,7 @@
 	public:
 		NowPlayingPage(QWidget* parent = nullptr);
 		void SetDefault();
-		void SetPlaying(int id, int episodes);
+		void SetPlaying(int id, const std::unordered_map<std::string, std::string>& episodes);
 		int GetPlayingId();
 
 	private: