Starshatter_Open
Open source Starshatter engine
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
LoadDlg.h
Go to the documentation of this file.
1 /* Project Starshatter 4.5
2  Destroyer Studios LLC
3  Copyright © 1997-2004. All Rights Reserved.
4 
5  SUBSYSTEM: Stars.exe
6  FILE: LoadDlg.h
7  AUTHOR: John DiCamillo
8 
9 
10  OVERVIEW
11  ========
12  Loading progress dialog box
13 */
14 
15 #ifndef LoadDlg_h
16 #define LoadDlg_h
17 
18 #include "Types.h"
19 #include "FormWindow.h"
20 
21 // +--------------------------------------------------------------------+
22 
23 class LoadDlg : public FormWindow
24 {
25 public:
26  LoadDlg(Screen* s, FormDef& def);
27  virtual ~LoadDlg();
28 
29  virtual void RegisterControls();
30 
31  // Operations:
32  virtual void ExecFrame();
33 
34 protected:
38 };
39 
40 #endif LoadDlg_h
41