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

about.hpp « qt - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1fdebf710befed464b886a0dd5fac901cce6c1a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <QtWidgets/QApplication>
#include <QtWidgets/QDialog>

class AboutDialog : public QDialog
{
  Q_OBJECT
public:
  explicit AboutDialog(QWidget * parent);
};