tools/drawMapTest/main.cpp
author koda
Mon, 03 Dec 2012 17:47:39 +0100
changeset 8202 9f0e79ab51f0
parent 4425 2314bb0c433d
permissions -rw-r--r--
GCI2012: Move Video Preferences in Settings Tab

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

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