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

mainwindow.hpp « drape_head - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8545bb3c9aabb61309f7ea0b51df76d8e97e0d06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include <QtWidgets/QMainWindow>

class QWidget;

class MainWindow : public QMainWindow
{
  Q_OBJECT

public:
  explicit MainWindow(QWidget *parent = 0);
  ~MainWindow();

protected:
  virtual void closeEvent(QCloseEvent * closeEvent);

private:
  QWidget * m_surface;
};