From 1abb1016400c4bd1dd4199145c24a20f2babab53 Mon Sep 17 00:00:00 2001 From: wittend99 Date: Sun, 13 May 2012 15:26:11 +0000 Subject: [PATCH] help>About Header git-svn-id: https://svn.code.sf.net/p/freetel/code@424 01035d8c-6547-0410-b346-abe4f91aad63 --- fdmdv2/dlg_about.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 fdmdv2/dlg_about.h diff --git a/fdmdv2/dlg_about.h b/fdmdv2/dlg_about.h new file mode 100644 index 00000000..d434ea3f --- /dev/null +++ b/fdmdv2/dlg_about.h @@ -0,0 +1,29 @@ +//========================================================================== +// Name: dlg_about.h +// +// Purpose: Subclasses dialog GUI for Help/About. +// (DlgAbout from topFrame.h) +// +// Date: May 05 2012 +// Initial author: David Witten +// License: BSD License (other licenses may apply to other +// components of this project) +//========================================================================== +#ifndef __ABOUT_DIALOG__ +#define __ABOUT_DIALOG__ + +#include "topFrame.h" + +class AboutDlg : public DlgAbout +{ + protected: + // Handlers for DlgAbout events. + void OnInitDialog( wxInitDialogEvent& event ); + + public: + /** Constructor */ + AboutDlg( wxWindow* parent ); + +}; + +#endif // __ABOUT_DIALOG__ -- 2.25.1