tools/drawMapTest/main.cpp
author nemo
Tue, 26 Mar 2013 17:52:27 -0400 (2013-03-26)
changeset 8777 cce79a042cfc
parent 4425 2314bb0c433d
permissions -rw-r--r--
merge. hate the fact that "unsynced remote changes" is just a "note" now.
#include <QtGui/QApplication>
#include "mainwindow.h"

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