From 66fd00eda79d106d07617ebdeb90cdd46786e691 Mon Sep 17 00:00:00 2001 From: Thales1330 Date: Fri, 9 Sep 2016 17:01:27 -0300 Subject: Bus form under implementation --- Project/BusForm.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Project/BusForm.h (limited to 'Project/BusForm.h') diff --git a/Project/BusForm.h b/Project/BusForm.h new file mode 100644 index 0000000..39ab009 --- /dev/null +++ b/Project/BusForm.h @@ -0,0 +1,14 @@ +#ifndef BUSFORM_H +#define BUSFORM_H +#include "ElementForm.h" + +class BusForm : public BusFormBase +{ +public: + BusForm(wxWindow* parent); + virtual ~BusForm(); +protected: + virtual void OnButtonCancelClick(wxCommandEvent& event); + virtual void OnButtonOKClick(wxCommandEvent& event); +}; +#endif // BUSFORM_H -- cgit