tools/drawMapTest/main.cpp
author unc0rr
Tue, 22 Jan 2013 00:24:44 +0400
changeset 8422 ec41194d4444
parent 4425 2314bb0c433d
permissions -rw-r--r--
Okay, let's try not trust even room admin on this

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

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