tools/drawMapTest/main.cpp
author unc0rr
Fri, 04 Jan 2013 19:42:49 +0400
changeset 8362 89a6b7cc6f95
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Unbreak build with .pro file - Cosmetic fixes to video recording stuff

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

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