| 34 | // CCryptAboutPropertyPage dialog |
| 35 | |
| 36 | class CCryptAboutPropertyPage : public CCryptPropertyPage |
| 37 | { |
| 38 | DECLARE_DYNAMIC(CCryptAboutPropertyPage) |
| 39 | |
| 40 | public: |
| 41 | // disallow copying |
| 42 | CCryptAboutPropertyPage(CCryptAboutPropertyPage const&) = delete; |
| 43 | void operator=(CCryptAboutPropertyPage const&) = delete; |
| 44 | |
| 45 | CCryptAboutPropertyPage(); |
| 46 | virtual ~CCryptAboutPropertyPage(); |
| 47 | |
| 48 | // Dialog Data |
| 49 | #ifdef AFX_DESIGN_TIME |
| 50 | enum { IDD = IDD_ABOUTBOX }; |
| 51 | #endif |
| 52 | |
| 53 | protected: |
| 54 | virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support |
| 55 | |
| 56 | DECLARE_MESSAGE_MAP() |
| 57 | public: |
| 58 | virtual BOOL OnInitDialog(); |
| 59 | afx_msg void OnEnChangeInfo(); |
| 60 | afx_msg void OnSetfocusInfo(); |
| 61 | afx_msg void OnItemchangedComponentsList(NMHDR *pNMHDR, LRESULT *pResult); |
| 62 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected