00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef _CSCOREDIALOG_H_
00012 #define _CSCOREDIALOG_H_
00013
00018 #include <eikappui.h>
00019 #include <eikapp.h>
00020 #include <eikdoc.h>
00021 #include <eikenv.h>
00022 #include <uikon.hrh>
00023 #include <eikmfne.h>
00024 #include <eikdialg.h>
00025 #include <eikon.hrh>
00026 #include <eikon.hrh>
00027 #include <eikdialg.h>
00028
00029 #include <Game.rsg>
00030 #include "Game.hrh"
00031
00032 #include "CHighScores.h"
00033
00036 class CScoreDialog : public CEikDialog {
00037 public:
00038 static void RunDlgLD(CHighScores &aHighScores,TInt aScore);
00039
00040 private:
00041 CScoreDialog(CHighScores &aHighScores, TInt aScore);
00042 TBool OkToExitL(TInt aKeycode);
00043
00044 private:
00045 CHighScores &iHighScores;
00046 TInt iScore;
00047 };
00048
00049 #endif