00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef __HELLOWORLDBASICAPPUI_H__
00017 #define __HELLOWORLDBASICAPPUI_H__
00018
00019
00020 #include <aknappui.h>
00021
00022
00023 class CHelloWorldBasicAppView;
00024
00025
00026
00032 class CHelloWorldBasicAppUi : public CAknAppUi
00033 {
00034 public:
00035
00040 void ConstructL();
00041
00047 CHelloWorldBasicAppUi();
00048
00053 virtual ~CHelloWorldBasicAppUi();
00054
00055 private:
00056
00062 void HandleCommandL( TInt aCommand );
00063
00069 void HandleResourceChangeL( TInt aType );
00070
00071 private:
00072
00077 CHelloWorldBasicAppView* iAppView;
00078
00079 };
00080
00081 #endif // __HELLOWORLDBASICAPPUI_H__
00082
00083
00084