schema_editor/comdel/display/dialog/success_dialog.h

20 lines
325 B
C
Raw Normal View History

2022-06-13 22:53:46 +00:00
//
// Created by bbr on 14.06.22..
//
#ifndef SCHEMEEDITOR_SUCCESS_DIALOG_H
#define SCHEMEEDITOR_SUCCESS_DIALOG_H
#include <QDialog>
namespace display {
class SuccessDialog: public QDialog {
public:
2022-06-19 18:10:44 +00:00
explicit SuccessDialog(std::string message);
2022-06-13 22:53:46 +00:00
};
} // display
#endif //SCHEMEEDITOR_SUCCESS_DIALOG_H