DragonNest/Client/EtUITool/Interval.cpp
2024-12-19 09:48:26 +08:00

35 lines
525 B
C++

// Interval.cpp : implementation file
//
#include "stdafx.h"
#include "EtUITool.h"
#include "Interval.h"
// CInterval dialog
IMPLEMENT_DYNAMIC(CInterval, CDialog)
CInterval::CInterval(CWnd* pParent /*=NULL*/)
: CDialog(CInterval::IDD, pParent)
, m_ctrlInterval(0)
{
}
CInterval::~CInterval()
{
}
void CInterval::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
DDX_Text(pDX, IDC_EDIT1, m_ctrlInterval);
}
BEGIN_MESSAGE_MAP(CInterval, CDialog)
END_MESSAGE_MAP()
// CInterval message handlers