00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __ContactMoveAPPUI_H_
00018 #define __ContactMoveAPPUI_H_
00019
00020
00021 #include <aknappui.h>
00022
00023 class CContactMoveMainView;
00024 class CContactWrite;
00025
00026 class CContactMoveAppUi : public CAknAppUi
00027 {
00028 public:
00029
00030 void ConstructL();
00031 ~CContactMoveAppUi();
00032
00033 void HandleCommandL(TInt aCommand);
00034
00035 void HandleResourceChangeL(TInt aType);
00036
00037 private:
00038
00039 CContactMoveMainView* iMainView;
00040 CContactWrite* iContactWriter;
00041
00042 };
00043
00044 #endif // __ContactMoveAPPUI_H_
00045
00046