tools/drawMapTest/main.cpp
author antonc27 <antonc27@mail.ru>
Tue, 15 Sep 2015 06:05:11 +0200
branchios-revival
changeset 11177 015596575698
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Possibility to send log file by email from app Note: Ugly ifdef's are necessary, because we don't want to include MessageUI framework into 'Distro Appstore' build scheme

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

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