tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Mon, 13 Nov 2017 21:16:52 +0100
changeset 12835 71cdc02ccca6
parent 11015 7a905f0070ce
permissions -rw-r--r--
- More files to ignore - Remove ancient kdevelop project file

#include "mainwindow.h"
#include <QApplication>

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

    return a.exec();
}