Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
21
qt/editor_dialog.hpp
Normal file
21
qt/editor_dialog.hpp
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#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;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue