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