From 93cf929f29dea490ed60e5300cacdd99886c988e Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Sat, 9 Sep 2023 20:09:50 -0400 Subject: Add the standalone portion of mapman. --- mapman/src/diffview.hpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 mapman/src/diffview.hpp (limited to 'mapman/src/diffview.hpp') 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 + +#include + +class QTextEdit; + +class diff_view : public QWidget +{ + Q_OBJECT +public: + diff_view(QWidget* par = nullptr); + void set_results(const std::vector &a_b, const std::vector &b_a); +private: + QTextEdit *tea_b; + QTextEdit *teb_a; +}; + +#endif -- cgit v1.2.3