00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef __HELLOWORLDBASICAPPUI_H__
00019 #define __HELLOWORLDBASICAPPUI_H__
00020
00021
00022 #include <aknappui.h>
00023
00024
00025 class CHelloWorldBasicAppView;
00026
00027
00028
00034 class CHelloWorldBasicAppUi : public CAknAppUi
00035 {
00036 public:
00037
00042 void ConstructL();
00043
00049 CHelloWorldBasicAppUi();
00050
00055 virtual ~CHelloWorldBasicAppUi();
00056
00057 private:
00058
00064 void HandleCommandL( TInt aCommand );
00065
00071 void HandleResourceChangeL( TInt aType );
00072
00073 private:
00074
00079 CHelloWorldBasicAppView* iAppView;
00080
00081 };
00082
00083 #endif // __HELLOWORLDBASICAPPUI_H__
00084
00085
00086