]> git.sur5r.net Git - minitube/blobdiff - src/invidious/ivlistparser.h
Update upstream source from tag 'upstream/3.8'
[minitube] / src / invidious / ivlistparser.h
diff --git a/src/invidious/ivlistparser.h b/src/invidious/ivlistparser.h
deleted file mode 100644 (file)
index c171fea..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef IVLISTPARSER_H
-#define IVLISTPARSER_H
-
-#include <QtCore>
-
-class Video;
-
-class IVListParser {
-public:
-    IVListParser(const QJsonArray &items);
-    const QVector<Video *> &getVideos() { return videos; }
-
-private:
-    void parseItem(const QJsonObject &item);
-
-    QVector<Video *> videos;
-};
-
-#endif // IVLISTPARSER_H