SDC C-Project CF Review 프로그램
LYW
2021-11-15 4139a71f5c0b72f88813a15d7112fdac76756fe4
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
// 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 메시지 처리기입니다.