Umasoft
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
VIADlg.h
1 //
2 // Name: VIADlg.h
3 //
4 // Copyright (c) Beard and Sandals Ltd.
5 // Free for all uses, see license.txt for details.
6 //
7 
8 #ifndef __VIADlg_H__
9 #define __VIADlg_H__
10 
11 #ifdef __GNUG__
12  #pragma interface "VIADlg.cpp"
13 #endif
14 
15 #include "EnviroUI.h"
16 
17 //----------------------------------------------------------------------------
18 // VIADlg
19 //----------------------------------------------------------------------------
20 
21 class VIADlg: public VIADlgBase
22 {
23 public:
24  // constructors and destructors
25  VIADlg(wxWindow *parent) : VIADlgBase(parent) {}
26 
27 private:
28  void OnInitDialog(wxInitDialogEvent& event);
29  void OnRecalculate(wxCommandEvent &event);
30 };
31 
32 
33 
34 
35 #endif