1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #include "stdafx.h"
- #include "Radiant.h"
- #include "CapDialog.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- CCapDialog::CCapDialog(CWnd* pParent )
- : CDialog(CCapDialog::IDD, pParent)
- {
-
- m_nCap = 0;
-
- }
- void CCapDialog::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
-
- DDX_Radio(pDX, IDC_RADIO_CAP, m_nCap);
-
- }
- BEGIN_MESSAGE_MAP(CCapDialog, CDialog)
-
-
-
- END_MESSAGE_MAP()
|