| 4 | // CMountMangerDialog dialog |
| 5 | |
| 6 | class CMountMangerDialog : public CDialogEx |
| 7 | { |
| 8 | DECLARE_DYNAMIC(CMountMangerDialog) |
| 9 | |
| 10 | public: |
| 11 | |
| 12 | BOOL m_bOkPressed; |
| 13 | |
| 14 | // disallow copying |
| 15 | CMountMangerDialog(CMountMangerDialog const&) = delete; |
| 16 | void operator=(CMountMangerDialog const&) = delete; |
| 17 | |
| 18 | CMountMangerDialog(CWnd* pParent = NULL); // standard constructor |
| 19 | virtual ~CMountMangerDialog(); |
| 20 | |
| 21 | // Dialog Data |
| 22 | #ifdef AFX_DESIGN_TIME |
| 23 | enum { IDD = IDD_MOUNTMANAGER }; |
| 24 | #endif |
| 25 | |
| 26 | protected: |
| 27 | virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support |
| 28 | |
| 29 | DECLARE_MESSAGE_MAP() |
| 30 | public: |
| 31 | afx_msg void OnBnClickedOk(); |
| 32 | afx_msg void OnBnClickedDontshowagain(); |
| 33 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected