You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
308 B
C

4 years ago
#ifndef _H_QADDMODEUI_H_
#define _H_QADDMODEUI_H_
#include <QDialog>
#include "ui_QAddModeUI.h"
class QAddModeUI : public QDialog
{
Q_OBJECT
public:
QAddModeUI(QWidget *parent = Q_NULLPTR);
~QAddModeUI();
Q_SLOT void onButtonClicked();
QString getInputName();
private:
Ui::QAddModeUI ui;
};
#endif