aboutsummaryrefslogtreecommitdiff
path: root/qdeduper/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qdeduper/main.cpp')
-rw-r--r--qdeduper/main.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/qdeduper/main.cpp b/qdeduper/main.cpp
new file mode 100644
index 0000000..9b40ea4
--- /dev/null
+++ b/qdeduper/main.cpp
@@ -0,0 +1,29 @@
+#include <cstdio>
+#include <algorithm>
+#include <filesystem>
+#include <map>
+#include <string>
+#include <vector>
+#include <unordered_map>
+#include <utility>
+
+#include <QWidget>
+#include <QApplication>
+#include "mingui.hpp"
+
+using std::size_t;
+namespace fs = std::filesystem;
+
+DeduperMainWindow *w = nullptr;
+
+int main(int argc, char **argv)
+{
+ QApplication a(argc, argv);
+
+ w = new DeduperMainWindow();
+ w->show();
+
+ a.exec();
+
+ return 0;
+}