1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| // 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 메시지 처리기입니다.
|
|