20 lines
352 B
C++
20 lines
352 B
C++
//
|
|
// 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:
|
|
explicit SuccessDialog(std::string message, std::string action = "Ok");
|
|
};
|
|
|
|
} // display
|
|
|
|
#endif //SCHEMEEDITOR_SUCCESS_DIALOG_H
|