mirror of
https://github.com/MelanieT/OpenSimConsoleClient.git
synced 2026-08-14 09:02:01 +00:00
31 lines
430 B
C++
31 lines
430 B
C++
#ifndef ADDGROUPDIALOG_H
|
|
#define ADDGROUPDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
class QLineEdit;
|
|
|
|
namespace Ui {
|
|
class AddGroupDialog;
|
|
}
|
|
|
|
class AddGroupDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AddGroupDialog(QWidget *parent = 0);
|
|
~AddGroupDialog();
|
|
|
|
QLineEdit *Name;
|
|
QLineEdit *Dns;
|
|
|
|
protected slots:
|
|
void OnOK();
|
|
void OnCancel();
|
|
private:
|
|
Ui::AddGroupDialog *ui;
|
|
};
|
|
|
|
#endif // ADDGROUPDIALOG_H
|