www.pudn.com > AndreasHalm-src.zip > LoadingProgress.cpp
// LoadingProgress.cpp : implementation file
//
#include "stdafx.h"
#include "OpenGLSLCubizzle.h"
#include "LoadingProgress.h"
// CLoadingProgress dialog
IMPLEMENT_DYNAMIC(CLoadingProgress, CDialog)
CLoadingProgress::CLoadingProgress(CWnd* pParent /*=NULL*/)
: CDialog(CLoadingProgress::IDD, pParent)
, m_sInfoText(_T(""))
{
Create(IDD);
}
CLoadingProgress::~CLoadingProgress()
{
}
void CLoadingProgress::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
DDX_Text(pDX, IDC_INFO, m_sInfoText);
DDX_Control(pDX, IDC_LOADING_PROGRESS, m_cLoadProgress);
}
BEGIN_MESSAGE_MAP(CLoadingProgress, CDialog)
END_MESSAGE_MAP()
// CLoadingProgress message handlers