tools/drawMapTest/main.cpp
author nemo
Sat, 23 Jul 2011 16:07:43 -0400
changeset 5439 25d3784dc0f6
parent 4425 2314bb0c433d
permissions -rw-r--r--
test on i should be first condition

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

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