]> git.sur5r.net Git - minitube/blobdiff - src/ytjs/ytjschannelsource.h
New upstream version 3.8
[minitube] / src / ytjs / ytjschannelsource.h
diff --git a/src/ytjs/ytjschannelsource.h b/src/ytjs/ytjschannelsource.h
deleted file mode 100644 (file)
index 0691c24..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef YTJSCHANNELSOURCE_H
-#define YTJSCHANNELSOURCE_H
-
-#include "videosource.h"
-
-class SearchParams;
-class Video;
-
-class YTJSChannelSource : public VideoSource {
-    Q_OBJECT
-
-public:
-    YTJSChannelSource(SearchParams *searchParams, QObject *parent = 0);
-    void loadVideos(int max, int startIndex);
-    void abort() { aborted = true; }
-    QString getName();
-    const QList<QAction *> &getActions();
-    SearchParams *getSearchParams() const { return searchParams; }
-
-private:
-    SearchParams *searchParams;
-    bool aborted = false;
-    QString name;
-
-    QString continuation;
-};
-
-#endif // YTJSCHANNELSOURCE_H