tools/drawMapTest/main.cpp
author nemo
Sat, 23 Jun 2012 23:04:06 -0400
changeset 7274 a07777b818f1
parent 4425 2314bb0c433d
permissions -rw-r--r--
Try to use TestCollExcludingMe a bit less - the flag bit is a bit (heh) more accurate.

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

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