tools/drawMapTest/main.cpp
author nemo
Fri, 29 Mar 2013 08:10:44 -0400
changeset 8814 01e13871f578
parent 4425 2314bb0c433d
permissions -rw-r--r--
*sigh* this shouldn'tve been removed in first place.

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

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