mirror of
https://github.com/HEYAHONG/SimpleBLETool.git
synced 2025-05-09 06:11:18 +08:00
24 lines
357 B
C++
24 lines
357 B
C++
#ifndef INPUTDIALOG_H
|
|
#define INPUTDIALOG_H
|
|
|
|
#include "GUIFrame.h"
|
|
|
|
class InputDialog:public GUIInputDialog
|
|
{
|
|
public:
|
|
InputDialog(wxWindow* parent);
|
|
virtual ~InputDialog();
|
|
|
|
|
|
wxString GetData();
|
|
|
|
protected:
|
|
virtual void OnOk( wxCommandEvent& event );
|
|
|
|
private:
|
|
|
|
wxString data;
|
|
};
|
|
|
|
#endif // INPUTDIALOG_H
|