tools/drawMapTest/main.cpp
author nemo
Sat, 05 Nov 2011 21:01:21 -0400
changeset 6296 0cd63375e80b
parent 4425 2314bb0c433d
permissions -rw-r--r--
not sure why this condition wasn't here before

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

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