Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 #ifndef UPDATE_INSTALL_DIALOG_H | |
2 #define UPDATE_INSTALL_DIALOG_H | |
3 | |
4 class UpdateInstallDialog | |
5 { | |
6 public: | |
7 UpdateInstallDialog(); | |
8 ~UpdateInstallDialog(); | |
9 bool Show(); | |
10 | |
11 private: | |
12 HWND window; | |
13 | |
14 UpdateInstallDialog(const UpdateInstallDialog&); | |
15 UpdateInstallDialog& operator=(const UpdateInstallDialog&); | |
16 }; | |
17 | |
18 #endif | |
OLD | NEW |