00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __CMAINMENU_H__
00018 #define __CMAINMENU_H__
00019
00020 #include <e32base.h>
00021 #include <etel3rdparty.h>
00022
00023 #include "CISVAPISync.h"
00024
00025 #include "CBaseMenuSync.h"
00026
00027
00028
00029 #include "CPhoneId.h"
00030 #include "CSubscriberId.h"
00031
00032 _LIT(KPhoneIdMsg, "Phone Id:\n");
00033 _LIT(KSubscriberIdMsg, "Subscriber Id:\n");
00034
00039 class CMainMenu : public CBaseMenuSync
00040 {
00041
00042
00043 public:
00044 static CMainMenu* NewLC(CConsoleBase& aConsole);
00045 ~CMainMenu();
00046
00047 private:
00048 CMainMenu(CConsoleBase& aConsole);
00049 void ConstructL();
00050 void DoCancel();
00051
00052 void RunL();
00053
00054 private:
00055
00059 CISVAPISync* iPhoneId;
00063 CISVAPISync* iSubscriberId;
00064
00065 };
00066
00067 #endif // __CMAINMENU_H__
00068