00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef THREAD_APPUI_H
00014 #define THREAD_APPUI_H
00015
00016
00017 #include <aknappui.h>
00018
00019
00020 class CThreadEngine;
00021 class CThreadAppView;
00022
00023
00024
00029 class CThreadAppUi : public CAknAppUi
00030 {
00031 public:
00032
00039 void ConstructL();
00040
00047 CThreadAppUi();
00048
00049
00055 ~CThreadAppUi();
00056
00057
00058 public:
00065 void HandleCommandL(TInt aCommand);
00066
00067 private:
00068
00069
00070 CThreadAppView* iAppView;
00071
00072
00073 CThreadEngine* iThreadEngine;
00074 };
00075
00076
00077 #endif // __THREAD_APPUI_H__