www.pudn.com > bmpstudy.rar > Mirror.cpp


// Mirror.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "exam7.h" 
#include "Mirror.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CMirror dialog 
 
 
CMirror::CMirror(CWnd* pParent /*=NULL*/) 
	: CDialog(CMirror::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(CMirror) 
	m_bH = FALSE; 
	m_bV = FALSE; 
	//}}AFX_DATA_INIT 
} 
 
 
void CMirror::DoDataExchange(CDataExchange* pDX) 
{ 
	CDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(CMirror) 
	DDX_Check(pDX, IDC_HORIZONTAL, m_bH); 
	DDX_Check(pDX, IDC_VERTICAL, m_bV); 
	//}}AFX_DATA_MAP 
} 
 
 
BEGIN_MESSAGE_MAP(CMirror, CDialog) 
	//{{AFX_MSG_MAP(CMirror) 
		// NOTE: the ClassWizard will add message map macros here 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CMirror message handlers