tools/drawMapTest/main.cpp
author sheepluva
Tue, 04 Feb 2014 15:23:37 +0100
changeset 10104 cb0b750bd8a3
parent 4425 2314bb0c433d
permissions -rw-r--r--
yo dawg, I herd you like PChar...

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

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