CSplash.h
上传用户:snevogroup
上传日期:2008-06-06
资源大小:432k
文件大小:1k
源码类别:

Symbian

开发平台:

C/C++

  1. #ifndef __CSPLASH_H
  2. #define __CSPLASH_H
  3. #include <w32std.h> // for CWindowGc
  4. class CSplash : CBase
  5. {
  6. // constructors and destructor
  7. public:
  8. static CSplash* NewL(CWindowGc& aGc, RWindow& aWindow);
  9. ~CSplash();
  10. private:
  11. CSplash(CWindowGc& aGc, RWindow& aWindow);
  12. void ConstructL();
  13. ///////////////////////////////////////////////////////////////////////////////
  14. // Other method
  15. public:
  16. TBool Draw();
  17. //////////////////////////////////////////////////////////////////////////////////
  18. // data
  19. private:
  20. CWindowGc& iGc;
  21. RWindow& iWindow;
  22. CFbsBitmap* ibitmap; // has a
  23. TInt8 iCount;
  24. };
  25. #endif