// ProgressViewer.cpp : インプリメンテーション ファイル // #include "stdafx.h" #include "MeshEditor.h" #include "ProgressViewer.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // ProgressViewer ダイアログ ProgressViewer::ProgressViewer(CWnd* pParent /*=NULL*/) : CDialog(ProgressViewer::IDD, pParent) { //{{AFX_DATA_INIT(ProgressViewer) // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します。 //}}AFX_DATA_INIT } void ProgressViewer::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(ProgressViewer) DDX_Control(pDX, IDC_PROGRESS1, m_progress); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(ProgressViewer, CDialog) //{{AFX_MSG_MAP(ProgressViewer) // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します。 //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // ProgressViewer メッセージ ハンドラ