blob: 1ce0a20826882ab7813f45060ada79cd3362df33 (
plain)
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
|
#include "StdAfx.h"
#include "DbgIPS.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
DbgIPS::DbgIPS(CWnd *pParent)
: CDialog(IDD, pParent)
{
Create(IDD, pParent);
//{{AFX_DATA_INIT(DbgIPS)
//}}AFX_DATA_INIT
}
/*virtual*/ void DbgIPS::DoDataExchange(CDataExchange *pDX) {
CWnd::DoDataExchange(pDX);
//{{AFX_DATA_MAP(DbgIPS)
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(DbgIPS, CDialog)
//{{AFX_MSG_MAP(DbgIPS)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
|