// DlgMotor.cpp : 구현 파일입니다. // #include "stdafx.h" #include "ReviewSystem.h" #include "DlgMotor.h" #include "afxdialogex.h" // CDlgMotor 대화 상자입니다. IMPLEMENT_DYNAMIC(CDlgMotor, CDialog) CDlgMotor::CDlgMotor(CWnd* pParent /*=NULL*/) : CDialog(CDlgMotor::IDD, pParent) { } CDlgMotor::~CDlgMotor() { } void CDlgMotor::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); } BEGIN_MESSAGE_MAP(CDlgMotor, CDialog) END_MESSAGE_MAP() // CDlgMotor 메시지 처리기입니다.