tools/drawMapTest/main.cpp
author nemo
Thu, 27 Jun 2013 14:01:43 -0400
changeset 9291 15f7bb217b66
parent 4425 2314bb0c433d
permissions -rw-r--r--
Make add/delete consistent (this has bugged me for so long)

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

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