summaryrefslogtreecommitdiffhomepage
path: root/Stars45/LoadDlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'Stars45/LoadDlg.h')
-rw-r--r--Stars45/LoadDlg.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/Stars45/LoadDlg.h b/Stars45/LoadDlg.h
deleted file mode 100644
index 8b79e28..0000000
--- a/Stars45/LoadDlg.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
- Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
- Copyright (c) 1997-2006, Destroyer Studios LLC.
-
- AUTHOR: John DiCamillo
-
-
- OVERVIEW
- ========
- Loading progress dialog box
-*/
-
-#ifndef LoadDlg_h
-#define LoadDlg_h
-
-#include "Types.h"
-#include "FormWindow.h"
-
-// +--------------------------------------------------------------------+
-
-class LoadDlg : public FormWindow
-{
-public:
- LoadDlg(Screen* s, FormDef& def);
- virtual ~LoadDlg();
-
- virtual void RegisterControls();
-
- // Operations:
- virtual void ExecFrame();
-
-protected:
- ActiveWindow* title;
- ActiveWindow* activity;
- Slider* progress;
-};
-
-#endif // LoadDlg_h
-