aboutsummaryrefslogtreecommitdiff
path: root/qdeduper/main.cpp
blob: 9b40ea41cdffdc4003d159850c2a1dcecbbde497 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
}