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.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Project/BusForm.cpp (limited to 'Project/BusForm.cpp') diff --git a/Project/BusForm.cpp b/Project/BusForm.cpp new file mode 100644 index 0000000..bbdee73 --- /dev/null +++ b/Project/BusForm.cpp @@ -0,0 +1,18 @@ +#include "BusForm.h" + +BusForm::BusForm(wxWindow* parent) + : BusFormBase(parent) +{ + SetSize(GetBestSize()); +} + +BusForm::~BusForm() +{ +} + +void BusForm::OnButtonCancelClick(wxCommandEvent& event) +{ +} +void BusForm::OnButtonOKClick(wxCommandEvent& event) +{ +} -- cgit