tools/drawMapTest/main.cpp
author unc0rr
Sun, 13 May 2012 21:39:20 +0400
changeset 7074 3f23bd0f2af2
parent 4425 2314bb0c433d
permissions -rw-r--r--
Make uUtils.c compile

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

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