caloadingscreen.h

00001 #ifndef CALOADINGSCREEN_H
00002 #define CALOADINGSCREEN_H
00003 
00004 #include "cascreen.h"
00005 
00009 class CALoadingScreen : public CAScreen  {
00010 public:
00011     CALoadingScreen();
00012     ~CALoadingScreen();
00013 
00014     virtual int run() {
00015         return 0;
00016     }
00017     virtual void buildScreen();
00018 
00019     void begin();
00020     void setProgress( float p );
00021     void addProgress( float p );
00022     void end();
00023 
00024 private:
00026 
00027     float progress;        // Progress in percent
00028 }
00029 ;
00030 
00031 #endif

Generated on Tue Nov 28 06:48:28 2006 by  doxygen 1.5.0