12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #include "stdafx.h"
- #include "IDE.h"
- #include "LogicPage.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- IMPLEMENT_DYNCREATE(CLogicPage, CPropertyPage)
- CLogicPage::CLogicPage() : CPropertyPage(CLogicPage::IDD)
- {
-
- m_strLogic = _T("");
-
- }
- CLogicPage::~CLogicPage()
- {
- }
- void CLogicPage::DoDataExchange(CDataExchange* pDX)
- {
- CPropertyPage::DoDataExchange(pDX);
-
- DDX_Text(pDX, IDC_LOGICON, m_strLogic);
-
- }
- BEGIN_MESSAGE_MAP(CLogicPage, CPropertyPage)
-
-
-
- END_MESSAGE_MAP()
|