summaryrefslogtreecommitdiff
path: root/main.cpp
blob: dffe85e3b5587273f26f7a7176fb0148197532d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "user_select_dialog.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    user_select_dialog w;
    w.show();

    return a.exec();
}