tools/drawMapTest/main.cpp
author mikade <redgrinner@gmail.com>
Mon, 15 Dec 2014 20:45:42 +0900
changeset 10673 2f19ff0ded73
parent 4425 2314bb0c433d
permissions -rw-r--r--
Some fixes and (really lazy) fixes

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

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