From ddb262a4d6bed48ac68eeed99032e10c49c02996 Mon Sep 17 00:00:00 2001 From: Thales1330 Date: Wed, 18 Jan 2017 19:45:49 -0200 Subject: Control editor implementation start --- Project/ControlEditor.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Project/ControlEditor.h (limited to 'Project/ControlEditor.h') diff --git a/Project/ControlEditor.h b/Project/ControlEditor.h new file mode 100644 index 0000000..b917db5 --- /dev/null +++ b/Project/ControlEditor.h @@ -0,0 +1,11 @@ +#ifndef CONTROLEDITOR_H +#define CONTROLEDITOR_H +#include "ControlEditorBase.h" + +class ControlEditor : public ControlEditorBase +{ +public: + ControlEditor(wxWindow* parent); + virtual ~ControlEditor(); +}; +#endif // CONTROLEDITOR_H -- cgit