porymap/include/ui/newmapconnectiondialog.h

29 lines
523 B
C
Raw Normal View History

2024-08-09 02:24:15 +01:00
#ifndef NEWMAPCONNECTIONDIALOG_H
#define NEWMAPCONNECTIONDIALOG_H
#include <QDialog>
#include "map.h"
#include "mapconnection.h"
namespace Ui {
class NewMapConnectionDialog;
}
class NewMapConnectionDialog : public QDialog
{
Q_OBJECT
public:
explicit NewMapConnectionDialog(QWidget *parent, Map* map, const QStringList &mapNames);
~NewMapConnectionDialog();
MapConnection *result;
virtual void accept() override;
private:
Ui::NewMapConnectionDialog *ui;
};
#endif // NEWMAPCONNECTIONDIALOG_H