mirror of
https://github.com/leozide/leocad
synced 2024-12-27 21:58:37 +01:00
29 lines
413 B
C
29 lines
413 B
C
|
#ifndef _LC_QARRAYDIALOG_H_
|
||
|
#define _LC_QARRAYDIALOG_H_
|
||
|
|
||
|
#include <QDialog>
|
||
|
struct lcArrayDialogOptions;
|
||
|
|
||
|
namespace Ui {
|
||
|
class lcQArrayDialog;
|
||
|
}
|
||
|
|
||
|
class lcQArrayDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit lcQArrayDialog(QWidget *parent, void* data);
|
||
|
~lcQArrayDialog();
|
||
|
|
||
|
lcArrayDialogOptions *options;
|
||
|
|
||
|
public slots:
|
||
|
void accept();
|
||
|
|
||
|
private:
|
||
|
Ui::lcQArrayDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // _LC_QARRAYDIALOG_H_
|