tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sat, 10 Nov 2018 21:15:42 +0100
changeset 14201 ab5e710d353d
parent 4425 2314bb0c433d
permissions -rw-r--r--
Remove all traces of dead code related to amStructure/gtStructure

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

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