www.pudn.com > MyImageDB(imageobject).rar > NewClassNameDlg.cpp


// NewClassNameDlg.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "myimagedb.h" 
#include "NewClassNameDlg.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CNewClassNameDlg dialog 
 
 
CNewClassNameDlg::CNewClassNameDlg(CWnd* pParent /*=NULL*/) 
	: CDialog(CNewClassNameDlg::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(CNewClassNameDlg) 
	myClassName = _T(""); 
	//}}AFX_DATA_INIT 
} 
 
 
void CNewClassNameDlg::DoDataExchange(CDataExchange* pDX) 
{ 
	CDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(CNewClassNameDlg) 
	DDX_Text(pDX, IDC_EDIT1, myClassName); 
	//}}AFX_DATA_MAP 
} 
 
 
BEGIN_MESSAGE_MAP(CNewClassNameDlg, CDialog) 
	//{{AFX_MSG_MAP(CNewClassNameDlg) 
		// NOTE: the ClassWizard will add message map macros here 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CNewClassNameDlg message handlers