00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef __CONTROLFRAMEWORKAPPUI_H
00017 #define __CONTROLFRAMEWORKAPPUI_H
00018
00019 #include <eikappui.h>
00020
00021 class CControlFrameworkView;
00022
00023
00024 class CControlFrameworkAppUi : public CEikAppUi
00025 {
00026 public:
00027 CControlFrameworkAppUi();
00028 ~CControlFrameworkAppUi();
00029 void AddViewL(CControlFrameworkView* aView);
00030 enum TViews
00031 {
00032 EExampleView
00033 };
00034
00035
00036 void ConstructL();
00037
00038 private:
00039 void HandleCommandL(TInt);
00040
00041 private:
00042 RPointerArray<CControlFrameworkView> iAppViews;
00043 };
00044
00045
00046 #endif // __CONTROLFRAMEWORKAPPUI_H
00047