mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
22 lines
334 B
C++
22 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:
|
|
Ui::lcPageSetupDialog *ui;
|
|
lcInstructionsPageSetup* mPageSetup;
|
|
};
|