48 lines
989 B
C++
48 lines
989 B
C++
// PropPhone.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CPropPhone dialog
|
|
|
|
class CPropPhone : public CPropertyPage
|
|
{
|
|
DECLARE_DYNCREATE(CPropPhone)
|
|
|
|
// Construction
|
|
public:
|
|
CPropPhone();
|
|
~CPropPhone();
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CPropPhone)
|
|
enum { IDD = IDD_PPAGE };
|
|
CString m_cellular;
|
|
CString m_cellularx;
|
|
CString m_fax;
|
|
CString m_faxx;
|
|
CString m_hphone;
|
|
CString m_hphonex;
|
|
CString m_pager;
|
|
CString m_pagerc;
|
|
CString m_pagerx;
|
|
CString m_wphone;
|
|
CString m_wphonex;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generate virtual function overrides
|
|
//{{AFX_VIRTUAL(CPropPhone)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CPropPhone)
|
|
// NOTE: the ClassWizard will add member functions here
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
};
|