13 lines
215 B
C++
13 lines
215 B
C++
#ifndef REMOTECONTROL_H
|
|
#define REMOTECONTROL_H
|
|
|
|
#include <wx/wx.h>
|
|
|
|
class RemoteControl : public wxPanel
|
|
{
|
|
public:
|
|
RemoteControl(wxWindow* parent);
|
|
~RemoteControl() override;
|
|
};
|
|
|
|
#endif // REMOTECONTROL_H
|