24 lines
462 B
C++
24 lines
462 B
C++
//
|
|
// Created by Krad on 2021/11/10.
|
|
//
|
|
|
|
#ifndef GUI_GUIFORMBASEDIALOG_H
|
|
#define GUI_GUIFORMBASEDIALOG_H
|
|
|
|
#include <QDialog>
|
|
class GUIFormBaseDialog: public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
explicit GUIFormBaseDialog(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
|
|
~GUIFormBaseDialog();
|
|
|
|
protected:
|
|
virtual bool updateReferenceData(){
|
|
return false;
|
|
};
|
|
QWidget* formWidget = nullptr;
|
|
};
|
|
|
|
|
|
#endif //GUI_GUIFORMBASEDIALOG_H
|