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

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

#include <QtWidgets/QDialog>

namespace qt
{

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

private slots:
  void OnAction();
};

} // namespace qt