#pragma once #include "afxwin.h" // CLogViewOption ´ëÈ­ »óÀÚÀÔ´Ï´Ù. class CLogViewOption : public CDialog { DECLARE_DYNAMIC(CLogViewOption) public: CLogViewOption(CWnd* pParent = NULL); // Ç¥ÁØ »ý¼ºÀÚÀÔ´Ï´Ù. virtual ~CLogViewOption(); // ´ëÈ­ »óÀÚ µ¥ÀÌÅÍÀÔ´Ï´Ù. enum { IDD = IDD_DiaLog_Option }; protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV Áö¿øÀÔ´Ï´Ù. DECLARE_MESSAGE_MAP() public: int m_nOptionLogSaveDelay; int m_nOptionMemoryMapDelay; int m_nOptionCommandReadDelay; int m_nOptionLogSaveLevel; CComboBox m_ComboOptionSaveLevel; int m_nOptionListPrintCount; afx_msg void OnBnClickedOk(); };