mirror of
https://github.com/leozide/leocad
synced 2024-12-27 21:58:37 +01:00
23 lines
334 B
C
23 lines
334 B
C
|
#pragma once
|
||
|
|
||
|
namespace Ui
|
||
|
{
|
||
|
class lcPageSetupDialog;
|
||
|
}
|
||
|
|
||
|
class lcPageSetupDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
lcPageSetupDialog(QWidget* Parent, lcInstructionsPageSetup* PageSetup);
|
||
|
~lcPageSetupDialog();
|
||
|
|
||
|
public slots:
|
||
|
void accept() override;
|
||
|
|
||
|
private:
|
||
|
lcInstructionsPageSetup* mPageSetup;
|
||
|
Ui::lcPageSetupDialog *ui;
|
||
|
};
|