// LogViewOption.cpp : ±¸Çö ÆÄÀÏÀÔ´Ï´Ù. // #include "stdafx.h" #include "LogView.h" #include "LogViewOption.h" // CLogViewOption ´ëÈ­ »óÀÚÀÔ´Ï´Ù. IMPLEMENT_DYNAMIC(CLogViewOption, CDialog) CLogViewOption::CLogViewOption(CWnd* pParent /*=NULL*/) : CDialog(CLogViewOption::IDD, pParent) , m_nOptionLogSaveDelay(0) , m_nOptionMemoryMapDelay(0) , m_nOptionCommandReadDelay(0) , m_nOptionLogSaveLevel(0) , m_nOptionListPrintCount(0) { } CLogViewOption::~CLogViewOption() { } void CLogViewOption::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); DDX_Text(pDX, IDC_Edit_LogSave_Delay, m_nOptionLogSaveDelay); DDX_Text(pDX, IDC_Edit_MemoryMapRead_Delay, m_nOptionMemoryMapDelay); DDX_Text(pDX, IDC_Edit_CommanRead_Delay, m_nOptionCommandReadDelay); DDX_CBIndex(pDX, IDC_Combo_OptionSaveLevel, m_nOptionLogSaveLevel); DDX_Control(pDX, IDC_Combo_OptionSaveLevel, m_ComboOptionSaveLevel); DDX_Text(pDX, IDC_Edit_ListPrintCount, m_nOptionListPrintCount); } BEGIN_MESSAGE_MAP(CLogViewOption, CDialog) END_MESSAGE_MAP() // CLogViewOption ¸Þ½ÃÁö 󸮱âÀÔ´Ï´Ù.