summaryrefslogtreecommitdiffstats
path: root/Project/BusForm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Project/BusForm.cpp')
-rw-r--r--Project/BusForm.cpp18
1 files changed, 18 insertions, 0 deletions
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)
+{
+}