| 32 | // CCryptPropertyPage dialog |
| 33 | |
| 34 | class CCryptPropertyPage : public CPropertyPage |
| 35 | { |
| 36 | DECLARE_DYNAMIC(CCryptPropertyPage) |
| 37 | |
| 38 | public: |
| 39 | // disallow copying |
| 40 | CCryptPropertyPage(CCryptPropertyPage const&) = delete; |
| 41 | void operator=(CCryptPropertyPage const&) = delete; |
| 42 | |
| 43 | CCryptPropertyPage(); |
| 44 | CCryptPropertyPage(int id); |
| 45 | virtual ~CCryptPropertyPage(); |
| 46 | |
| 47 | // Dialog Data |
| 48 | #ifdef AFX_DESIGN_TIME |
| 49 | enum { IDD = IDD_CRYPTPROPERTYPAGE }; |
| 50 | #endif |
| 51 | virtual void DefaultAction(); |
| 52 | virtual void ProcessCommandLine(LPCTSTR szCmd, BOOL bOnStartup = FALSE, HANDLE hPipe = INVALID_HANDLE_VALUE); |
| 53 | virtual void DeviceChange(); |
| 54 | virtual void OnExit(); |
| 55 | |
| 56 | protected: |
| 57 | virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support |
| 58 | |
| 59 | DECLARE_MESSAGE_MAP() |
| 60 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected