blob: 746ffc6f073656a5c405f77bec15314167f6763c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include "DbgIPS.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
DbgIPS::DbgIPS(CWnd *pParentWnd)
: CDialog(171, pParentWnd)
{
Create(171, pParentWnd);
}
/*virtual*/ void DbgIPS::DoDataExchange(CDataExchange *pDX) {
CWnd::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(DbgIPS, CDialog)
END_MESSAGE_MAP()
|