28 lines
655 B
C++
28 lines
655 B
C++
// LoadingScreen.h: interface for the CLoadingScreen class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
/*
|
|
#if !defined(AFX_LOADINGSCREEN_H__C456C60D_8122_4E6C_9DAC_1E0BBF6BFB56__INCLUDED_)
|
|
#define AFX_LOADINGSCREEN_H__C456C60D_8122_4E6C_9DAC_1E0BBF6BFB56__INCLUDED_
|
|
|
|
#include "LoadingDialog.h"
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
class CLoadingScreen
|
|
{
|
|
public:
|
|
static void Hide();
|
|
static void Show();
|
|
|
|
CLoadingScreen();
|
|
virtual ~CLoadingScreen();
|
|
|
|
private:
|
|
static CLoadingDialog m_cLoadingDialog;
|
|
};
|
|
|
|
#endif // !defined(AFX_LOADINGSCREEN_H__C456C60D_8122_4E6C_9DAC_1E0BBF6BFB56__INCLUDED_)
|
|
*/ |