summaryrefslogtreecommitdiff
path: root/src/plugins/rview.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/rview.hpp')
-rw-r--r--src/plugins/rview.hpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/plugins/rview.hpp b/src/plugins/rview.hpp
deleted file mode 100644
index 6f0652d5..00000000
--- a/src/plugins/rview.hpp
+++ /dev/null
@@ -1,27 +0,0 @@
-/* ============================================================
- * The rekonq project
- * ============================================================
- * SPDX-License-Identifier: GPL-3.0-only
- * Copyright (C) 2022 aqua <aqua@iserlohn-fortress.net>
- * ============================================================
- * Description: View Interface
- * ============================================================ */
-
-#pragma once
-
-#include <QUrl>
-#include <QWidget>
-
-class rView : public QWidget {
- Q_OBJECT
-
-public:
- explicit rView(const QUrl &url = QUrl(), QWidget *parent = nullptr) : QWidget(parent) {}
-
- [[nodiscard]] virtual QString title() const = 0;
-
-signals:
- void iconChanged(const QIcon &);
- void urlChanged(const QUrl &);
- void titleChanged(const QString &);
-};