mirror of
https://github.com/HEYAHONG/SimpleBLETool.git
synced 2025-05-08 22:09:19 +08:00
29 lines
624 B
C++
29 lines
624 B
C++
#ifndef __SimpleBLEToolGUIFrame__
|
|
#define __SimpleBLEToolGUIFrame__
|
|
|
|
/**
|
|
@file
|
|
Subclass of GUIFrame, which is generated by wxFormBuilder.
|
|
*/
|
|
|
|
#include "GUIFrame.h"
|
|
|
|
//// end generated include
|
|
|
|
/** Implementing GUIFrame */
|
|
class SimpleBLEToolGUIFrame : public GUIFrame
|
|
{
|
|
protected:
|
|
// Handlers for GUIFrame events.
|
|
void OnClose( wxCloseEvent& event );
|
|
void OnAbout( wxCommandEvent& event );
|
|
public:
|
|
/** Constructor */
|
|
SimpleBLEToolGUIFrame( wxWindow* parent );
|
|
//// end generated class members
|
|
virtual ~SimpleBLEToolGUIFrame();
|
|
|
|
};
|
|
|
|
#endif // __SimpleBLEToolGUIFrame__
|