This repository has been archived on 2025-06-17. You can view files and clone it, but cannot push or open issues or pull requests.

17 lines
286 B
C++

#ifndef IUSERINTERFACE_H
#define IUSERINTERFACE_H
#include <wx/wx.h>
class UserInterface final : public wxFrame
{
public:
explicit UserInterface(const wxString& title);
~UserInterface() override;
private:
void InitUI();
void InitData();
};
#endif // IUSERINTERFACE_H