tools/drawMapTest/main.cpp
author sheepluva
Mon, 24 Oct 2011 01:09:33 +0200 (2011-10-23)
changeset 6194 32b7e0ece99a
parent 4425 2314bb0c433d
permissions -rw-r--r--
improve and cash hilight regexp
#include <QtGui/QApplication>
#include "mainwindow.h"

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