// 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() }; /////////////////////////////////////////////////////////////////////////////