co-maps/qt/editor_dialog.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
311 B
C++
Raw Permalink Normal View History

2025-11-22 13:58:55 +01:00
#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;
};