mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
27 lines
377 B
C++
27 lines
377 B
C++
#ifndef _LC_QGROUPDIALOG_H_
|
|
#define _LC_QGROUPDIALOG_H_
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class lcQGroupDialog;
|
|
}
|
|
|
|
class lcQGroupDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit lcQGroupDialog(QWidget *parent, const QString& Name);
|
|
~lcQGroupDialog();
|
|
|
|
QString mName;
|
|
|
|
public slots:
|
|
void accept();
|
|
|
|
private:
|
|
Ui::lcQGroupDialog *ui;
|
|
};
|
|
|
|
#endif // _LC_QGROUPDIALOG_H_
|