删除多余文件

This commit is contained in:
HEYAHONG 2022-09-18 00:38:45 +08:00
parent bfb406350f
commit 08acd11c86
2 changed files with 0 additions and 60 deletions

View File

@ -1,32 +0,0 @@
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif //__BORLANDC__
#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif //WX_PRECOMP
#include "SimpleBLEToolGUIFrame.h"
SimpleBLEToolGUIFrame::SimpleBLEToolGUIFrame( wxWindow* parent )
:
GUIFrame( parent )
{
}
void SimpleBLEToolGUIFrame::OnClose( wxCloseEvent& event )
{
// TODO: Implement OnClose
}
void SimpleBLEToolGUIFrame::OnAbout( wxCommandEvent& event )
{
// TODO: Implement OnAbout
}
SimpleBLEToolGUIFrame::~SimpleBLEToolGUIFrame()
{
}

View File

@ -1,28 +0,0 @@
#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__