tools/drawMapTest/main.cpp
author antonc27 <antonc27@mail.ru>
Fri, 16 Oct 2015 02:54:03 +0200
branchios-revival
changeset 11213 6e5fd5ea5acb
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Fix for autorotation of table view of StatsPageVC - Adjustment for header's height

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

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