blob: 9c82334941391db7de471ba2b4e57e2f7f095a4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include "common.h"
class T2NewDlgTmp : public CDialog {
DECLARE_MESSAGE_MAP()
public:
T2NewDlgTmp(CWnd *pParentWnd);
CButton mOKButton;
CButton mCancelButton;
CStatic mStatic;
protected:
virtual void DoDataExchange(CDataExchange *pDX);
};
|