From c57cd0703d7c96828d7cbecaaa4a0202f18c1b6d Mon Sep 17 00:00:00 2001 From: wittend99 Date: Sun, 13 May 2012 15:30:39 +0000 Subject: [PATCH] General Program Options Dialog git-svn-id: https://svn.code.sf.net/p/freetel/code@429 01035d8c-6547-0410-b346-abe4f91aad63 --- fdmdv2/dlg_options.cpp | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 fdmdv2/dlg_options.cpp diff --git a/fdmdv2/dlg_options.cpp b/fdmdv2/dlg_options.cpp new file mode 100644 index 00000000..77d3ec20 --- /dev/null +++ b/fdmdv2/dlg_options.cpp @@ -0,0 +1,29 @@ +//========================================================================== +// Name: dlg_options.cpp +// +// Purpose: Creates simple wxWidgets dialog GUI general program +// devices/options. +// +// Date: May 06 2012 +// Initial author: David Witten +// License: BSD License (other licenses may apply to other +// components of this project) +//========================================================================== +#include "dlg_options.h" + +//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= +// Class OptionsDlg +//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= +OptionsDlg::OptionsDlg( wxWindow* parent ) : DlgOptions( parent ) +{ +} + +void OptionsDlg::OnClose( wxCloseEvent& event ) +{ +// TODO: Implement OnClose +} + +void OptionsDlg::OnInitDialog( wxInitDialogEvent& event ) +{ +// TODO: Implement OnInitDialog +} -- 2.25.1