#include "StdAfx.h" #include "DbgStepRun.h" #include "T2MainWindow.h" #include "T2TowerDoc.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif DbgStepRun::DbgStepRun(CWnd *pParent) { Create(IDD, pParent); //{{AFX_DATA_INIT(DbgStepRun) //}}AFX_DATA_INIT } /*virtual*/ void DbgStepRun::DoDataExchange(CDataExchange *pDX) { CWnd::DoDataExchange(pDX); //{{AFX_DATA_MAP(DbgStepRun) //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(DbgStepRun, CDialog) //{{AFX_MSG_MAP(DbgStepRun) ON_COMMAND(IDC_DBG_STEP, OnCommand1006) //}}AFX_MSG_MAP END_MESSAGE_MAP() void DbgStepRun::OnCommand1006() { ((T2TowerDoc *) T2_MAIN_WINDOW->GetActiveDocument())->towerDoc_vfC0(true); }