LEFT | RIGHT |
1 #ifndef UPDATE_INSTALL_DIALOG_H | 1 #ifndef UPDATE_INSTALL_DIALOG_H |
2 #define UPDATE_INSTALL_DIALOG_H | 2 #define UPDATE_INSTALL_DIALOG_H |
3 | 3 |
4 class UpdateInstallDialog | 4 class UpdateInstallDialog |
5 { | 5 { |
6 public: | 6 public: |
7 UpdateInstallDialog(); | 7 UpdateInstallDialog(); |
8 ~UpdateInstallDialog(); | 8 ~UpdateInstallDialog(); |
9 bool Show(); | 9 bool Show(); |
10 | 10 |
11 private: | 11 private: |
12 HWND window; | 12 HWND window; |
13 | 13 |
14 UpdateInstallDialog(const UpdateInstallDialog&); | 14 UpdateInstallDialog(const UpdateInstallDialog&); |
15 UpdateInstallDialog& operator=(const UpdateInstallDialog&); | 15 UpdateInstallDialog& operator=(const UpdateInstallDialog&); |
16 void CreateText(); | |
17 void CreateButtons(); | |
18 }; | 16 }; |
19 | 17 |
20 #endif | 18 #endif |
LEFT | RIGHT |