aboutsummaryrefslogtreecommitdiff
path: root/mapman/src/diffview.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'mapman/src/diffview.hpp')
-rw-r--r--mapman/src/diffview.hpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/mapman/src/diffview.hpp b/mapman/src/diffview.hpp
new file mode 100644
index 0000000..d506f3a
--- /dev/null
+++ b/mapman/src/diffview.hpp
@@ -0,0 +1,21 @@
+#ifndef DIFFVIEW_HPP
+#define DIFFVIEW_HPP
+
+#include <QWidget>
+
+#include <vector>
+
+class QTextEdit;
+
+class diff_view : public QWidget
+{
+ Q_OBJECT
+public:
+ diff_view(QWidget* par = nullptr);
+ void set_results(const std::vector<int> &a_b, const std::vector<int> &b_a);
+private:
+ QTextEdit *tea_b;
+ QTextEdit *teb_a;
+};
+
+#endif