35 lines
1.2 KiB
C++
35 lines
1.2 KiB
C++
// NewProfile.cpp : implementation file
|
||
//
|
||
|
||
#include "stdafx.h"
|
||
#include "PatchBuilder.h"
|
||
#include "NewProfile.h"
|
||
|
||
|
||
// CNewProfile dialog
|
||
|
||
IMPLEMENT_DYNAMIC(CNewProfile, CDialog)
|
||
|
||
CNewProfile::CNewProfile(CWnd* pParent /*=NULL*/)
|
||
: CDialog(CNewProfile::IDD, pParent)
|
||
, m_szProfileName(_T(""))
|
||
{
|
||
|
||
}
|
||
|
||
CNewProfile::~CNewProfile()
|
||
{
|
||
}
|
||
|
||
void CNewProfile::DoDataExchange(CDataExchange* pDX)
|
||
{
|
||
CDialog::DoDataExchange(pDX);
|
||
DDX_Text(pDX, IDC_PROFILE_NAME, m_szProfileName);
|
||
}
|
||
|
||
|
||
BEGIN_MESSAGE_MAP(CNewProfile, CDialog)
|
||
END_MESSAGE_MAP()
|
||
|
||
|
||
// CNewProfile message handlers
|