www.pudn.com > Tetris.rar > CSplash.h


#ifndef __CSPLASH_H 
#define __CSPLASH_H 
 
#include 			// for CWindowGc 
 
 
class CSplash : CBase 
{ 
// constructors and destructor 
public: 
 
	static CSplash* NewL(CWindowGc&	aGc, RWindow&	aWindow); 
 
	~CSplash(); 
 
private: 
	CSplash(CWindowGc&	aGc, RWindow&	aWindow); 
	void ConstructL(); 
 
/////////////////////////////////////////////////////////////////////////////// 
 
// Other method 
public: 
	TBool Draw(); 
 
////////////////////////////////////////////////////////////////////////////////// 
// data 
private: 
	CWindowGc&			iGc; 
	RWindow&			iWindow; 
 
	CFbsBitmap*			ibitmap;			// has a 
 
	TInt8				iCount;	 
}; 
 
 
#endif