RelayFile/UserInterface/UserInterface.h

17 lines
286 B
C
Raw Normal View History

2025-05-08 21:13:36 +08:00
#ifndef IUSERINTERFACE_H
#define IUSERINTERFACE_H
2025-05-05 23:22:43 +08:00
2025-05-08 21:13:36 +08:00
#include <wx/wx.h>
class UserInterface final : public wxFrame
2025-05-05 23:22:43 +08:00
{
public:
2025-05-08 21:13:36 +08:00
explicit UserInterface(const wxString& title);
~UserInterface() override;
private:
void InitUI();
void InitData();
2025-05-05 23:22:43 +08:00
};
2025-05-08 21:13:36 +08:00
#endif // IUSERINTERFACE_H