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

editor_dialog.hpp « qt - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b93acdb84d729a8373bcf5057d57ad9456205822 (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/QDialog>

namespace osm
{
class EditableMapObject;
}  // namespace osm

class EditorDialog : public QDialog
{
  Q_OBJECT
public:
  EditorDialog(QWidget * parent, osm::EditableMapObject & emo);
private slots:
  void OnSave();

private:
  osm::EditableMapObject & m_feature;
};