21 lines
415 B
C++
21 lines
415 B
C++
#ifndef SCHEMEEDITOR_WARNING_DIALOG_H
|
|
#define SCHEMEEDITOR_WARNING_DIALOG_H
|
|
|
|
#include "generic_dialog.h"
|
|
#include "comdel/domain/comdel_validator.h"
|
|
|
|
namespace display {
|
|
|
|
class WarningDialog : public GenericDialog {
|
|
public:
|
|
WarningDialog(domain::ValidationError error);
|
|
|
|
protected:
|
|
bool onUpdate() override { return true; };
|
|
};
|
|
|
|
|
|
} // display
|
|
|
|
#endif //SCHEMEEDITOR_WARNING_DIALOG_H
|