// DlgMotorControl.cpp : 구현 파일입니다.
|
//
|
|
#include "stdafx.h"
|
#include "ReviewSystem.h"
|
#include "DlgMotorControl.h"
|
#include "afxdialogex.h"
|
|
|
// CDlgMotorControl 대화 상자입니다.
|
|
IMPLEMENT_DYNAMIC(CDlgMotorControl, CDialog)
|
|
CDlgMotorControl::CDlgMotorControl(CWnd* pParent /*=NULL*/)
|
: CDialog(CDlgMotorControl::IDD, pParent)
|
{
|
|
}
|
|
CDlgMotorControl::~CDlgMotorControl()
|
{
|
}
|
|
void CDlgMotorControl::DoDataExchange(CDataExchange* pDX)
|
{
|
CDialog::DoDataExchange(pDX);
|
}
|
|
|
BEGIN_MESSAGE_MAP(CDlgMotorControl, CDialog)
|
ON_BN_CLICKED(IDOK, &CDlgMotorControl::OnBnClickedOk)
|
ON_BN_CLICKED(IDCANCEL, &CDlgMotorControl::OnBnClickedCancel)
|
END_MESSAGE_MAP()
|
|
|
// CDlgMotorControl 메시지 처리기입니다.
|
|
|
void CDlgMotorControl::OnBnClickedOk()
|
{
|
// TODO: 여기에 컨트롤 알림 처리기 코드를 추가합니다.
|
//CDialog::OnOK();
|
}
|
|
|
void CDlgMotorControl::OnBnClickedCancel()
|
{
|
// TODO: 여기에 컨트롤 알림 처리기 코드를 추가합니다.
|
//CDialog::OnCancel();
|
}
|