#ifndef H_CMSGDLG #define H_CMSGDLG #include #include "resource.h" class CMsgDlg : public CDialog { public: CMsgDlg(CWnd* pParentWnd = NULL) : CDialog(IDD_MSGDLG, pParentWnd) {} virtual BOOL OnInitDialog(); protected: afx_msg void OnSave(); afx_msg void OnLoad(); afx_msg void OnClear(); DECLARE_MESSAGE_MAP() }; #endif