From 107ce20e778b086df9b6c9cc6879f987dbd2c2fc Mon Sep 17 00:00:00 2001 From: wittend99 Date: Sun, 13 May 2012 15:29:07 +0000 Subject: [PATCH] Comm Ports Dialog git-svn-id: https://svn.code.sf.net/p/freetel/code@427 01035d8c-6547-0410-b346-abe4f91aad63 --- fdmdv2/dlg_comports.cpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 fdmdv2/dlg_comports.cpp diff --git a/fdmdv2/dlg_comports.cpp b/fdmdv2/dlg_comports.cpp new file mode 100644 index 00000000..df73ae68 --- /dev/null +++ b/fdmdv2/dlg_comports.cpp @@ -0,0 +1,22 @@ +//========================================================================== +// Name: dlg_comports.cpp +// Purpose: Creates simple wxWidgets dialog GUI to select +// real/virtual Comm ports. +// Date: May 11 2012 +// Initial author: David Witten +// License: BSD License (other licenses may apply to other +// components of this project) +//========================================================================== +#include "dlg_comports.h" + +//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= +// Class ComPortsDlg +//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= +ComPortsDlg::ComPortsDlg( wxWindow* parent ) : DlgComPorts( parent ) +{ +} + +void ComPortsDlg::OnListItemSelected( wxListEvent& event ) +{ + // TODO: Implement OnListItemSelected +} -- 2.25.1