Wizard
Software Engineering Project - Wizard
Loading...
Searching...
No Matches
src
client
messageBoxes
ScoreDialog.h
1
//
2
// Created by hannah on 11/11/24.
3
//
4
5
#ifndef SCOREDIALOG_H
6
#define SCOREDIALOG_H
7
8
#include <wx/wx.h>
9
#include <wx/timer.h>
10
#include <string>
11
12
class
ScoreDialog
:
public
wxDialog{
13
public
:
14
ScoreDialog
(wxWindow* parent,
const
std::string& title,
const
std::string& message);
15
~ScoreDialog
() =
default
;
16
private
:
17
wxTimer _closeTimer;
18
19
void
OnTimerClose(wxTimerEvent& event);
20
21
wxDECLARE_EVENT_TABLE();
// For handling wxWidgets events
22
};
23
24
25
26
#endif
ScoreDialog
Definition
ScoreDialog.h:12
Generated by
1.12.0