#pragma once #include "ChattingPage.h" /** \class CMonitoringSheet CMonitoringToolDlg¿¡ ºÙ¾îÀÖ´Â ÇÁ·ÎÆÛƼ ½ÃÆ®*/ class CMonitoringSheet : public CPropertySheet { DECLARE_DYNAMIC(CMonitoringSheet) public: CMonitoringSheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0); CMonitoringSheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0); virtual ~CMonitoringSheet(); protected: DECLARE_MESSAGE_MAP() virtual BOOL OnInitDialog(); private: CChattingPage m_ChattingPage; ///< äÆÃ ¸ð´ÏÅ͸µ ÆäÀÌÁö public: afx_msg void OnSize(UINT nType, int cx, int cy); };