tools/drawMapTest/main.cpp
author nemo
Sun, 26 Jun 2011 20:19:11 -0400
changeset 5330 0f31c8ab064b
parent 4425 2314bb0c433d
permissions -rw-r--r--
disable .reserve - not 4.6 compatible

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

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