Index: src/engine/UpdateInstallDialog.h |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/src/engine/UpdateInstallDialog.h |
@@ -0,0 +1,18 @@ |
+#ifndef UPDATE_INSTALL_DIALOG_H |
+#define UPDATE_INSTALL_DIALOG_H |
+ |
+class UpdateInstallDialog |
+{ |
+public: |
+ UpdateInstallDialog(); |
+ ~UpdateInstallDialog(); |
+ bool Show(); |
+ |
+private: |
+ HWND window; |
+ |
+ UpdateInstallDialog(const UpdateInstallDialog&); |
+ UpdateInstallDialog& operator=(const UpdateInstallDialog&); |
+}; |
+ |
+#endif |