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: 700088b330608d90d4947694c2ec7d8a51fc80ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "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();
}