tools/drawMapTest/main.cpp
author koda
Sat, 07 Nov 2015 15:07:33 +0100
changeset 11316 516e9b1ac889
parent 4425 2314bb0c433d
permissions -rw-r--r--
videorec: Drop setting x264 preset It is the default one anyway.

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

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