tools/drawMapTest/main.cpp
author nemo
Tue, 07 Dec 2010 23:47:11 -0500
changeset 4484 b7a098f2649a
parent 4425 2314bb0c433d
permissions -rw-r--r--
these should probably be expressly integer

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

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