CSplash.h
上传用户:snevogroup
上传日期:2008-06-06
资源大小:432k
文件大小:1k
- #ifndef __CSPLASH_H
- #define __CSPLASH_H
- #include <w32std.h> // 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