co-maps/qt/osm_auth_dialog.hpp
2025-11-22 13:58:55 +01:00

19 lines
221 B
C++

#pragma once
#include <QtWidgets/QDialog>
namespace qt
{
class OsmAuthDialog : public QDialog
{
Q_OBJECT
public:
explicit OsmAuthDialog(QWidget * parent);
private slots:
void OnAction();
};
} // namespace qt