This repository has been archived on 2024-03-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ContactBook/PropInfo.h
2024-03-20 09:28:18 -05:00

53 lines
1.1 KiB
C++

// PropInfo.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CPropInfo
#include "PropAdd.h"
#include "PropComp.h"
#include "PropPhone.h"
#include "PropOnline.h"
#include "PropNote.h"
class CPropInfo : public CPropertySheet
{
DECLARE_DYNAMIC(CPropInfo)
// Construction
public:
CPropInfo(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
CPropInfo(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
protected:
// Attributes
public:
CPropAdd m_propadd;
CPropComp m_propcomp;
CPropPhone m_propphone;
CPropOnline m_proponline;
CPropNote m_propnote;
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CPropInfo)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CPropInfo();
void AddControlPages(void);
// Generated message map functions
protected:
HICON m_hIcon;
//{{AFX_MSG(CPropInfo)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////