Wizard
Software Engineering Project - Wizard
Loading...
Searching...
No Matches
ErrorDialog.h
1//
2// Created by hannah on 11/9/24.
3//
4
5#ifndef ERRORDIALOG_H
6#define ERRORDIALOG_H
7
8#include <wx/wx.h>
9#include <wx/statbmp.h>
10
11class ErrorDialog : public wxDialog{
12 public: ErrorDialog(wxWindow* parent, const std::string& title, const std::string& message, const wxBitmap& image);
13
14 private:
15 wxStaticBitmap* imageCtrl;
16 wxStaticText* messageCtrl;
17 wxButton* okButton;
18
19};
20
21#endif //ERRORDIALOG_H
Definition ErrorDialog.h:11