tools/drawMapTest/main.cpp
author unc0rr
Wed, 02 May 2012 22:51:42 +0400
changeset 7002 5d817ba976f7
parent 4425 2314bb0c433d
permissions -rw-r--r--
Render float consts into defines

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

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