Welcome to mirror list, hosted at ThFree Co, Russian Federation.

main.cpp « drape_head - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dda0d1d6081b210b9f346f3abab68d550cf0755b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "drape_head/mainwindow.hpp"
#include <QtWidgets/QApplication>

int main(int argc, char *argv[])
{
  QApplication a(argc, argv);
  a.setQuitOnLastWindowClosed(true);

  MainWindow w;
  w.show();

  return a.exec();
}