27 lines
383 B
C
27 lines
383 B
C
|
|
#ifndef NEWHEADDIALOG_H
|
|||
|
|
#define NEWHEADDIALOG_H
|
|||
|
|
|
|||
|
|
#include <QDialog>
|
|||
|
|
|
|||
|
|
namespace Ui {
|
|||
|
|
class NewHeadDialog;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
class NewHeadDialog : public QDialog
|
|||
|
|
{
|
|||
|
|
Q_OBJECT
|
|||
|
|
|
|||
|
|
public:
|
|||
|
|
explicit NewHeadDialog(QWidget *parent = nullptr);
|
|||
|
|
~NewHeadDialog();
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
Ui::NewHeadDialog *ui;
|
|||
|
|
|
|||
|
|
public slots:
|
|||
|
|
void accepted_OK();
|
|||
|
|
void rejected_Cancel();
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
#endif // NEWHEADDIALOG_H
|