tools/drawMapTest/main.cpp
author sheepluva
Thu, 20 Oct 2011 05:52:11 +0200
changeset 6158 cf034cc88e39
parent 4425 2314bb0c433d
permissions -rw-r--r--
comment typo

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

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