mirror of
https://github.com/leozide/leocad.git
synced 2026-09-12 09:35:24 +00: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_
|