tools/drawMapTest/main.cpp
author unc0rr
Sun, 27 Nov 2011 14:46:57 +0300
changeset 6450 14224c9b4594
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Improvement to the parser - Help parser with 'not' prefix operator

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

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