tools/drawMapTest/main.cpp
author unc0rr
Sun, 12 Jan 2014 16:21:57 +0400
changeset 9977 e2ecde00b2a7
parent 4425 2314bb0c433d
permissions -rw-r--r--
Oops, forgot 'hg add' this file

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

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