1
2
3
4
5
6
7
8
9
10
11
12
13
14
| #pragma once
| #include <afxdialogex.h>
| class CMyPropPage :
| public CDialogEx
| {
| public:
| CMyPropPage() :CDialogEx() {};
| CMyPropPage(UINT nTemplate, CWnd * pWnd = (CWnd *)0) :CDialogEx(nTemplate, pWnd) {};
| virtual ~CMyPropPage() {};
| virtual int SetData() { return 0; };
| virtual int GetData() { return 0; };
| void * DataPtr = nullptr;
| };
|
|
|