00001
00002
00003
00004
00005
00006
00007
00008 #ifndef __TESTAPP_APPVIEW_H__
00009 #define __TESTAPP_APPVIEW_H__
00010
00011
00012 #include <coecntrl.h>
00013
00020 class CTestAppAppView : public CCoeControl
00021 {
00022 public:
00023
00031 static CTestAppAppView* NewL(const TRect& aRect);
00032
00040 static CTestAppAppView* NewLC(const TRect& aRect);
00041
00042
00048 ~CTestAppAppView();
00049
00050
00051 public:
00058 void Draw(const TRect& aRect) const;
00059
00060
00061 private:
00062
00069 void ConstructL(const TRect& aRect);
00070
00076 CTestAppAppView();
00077 };
00078
00079
00080 #endif // __TESTAPP_APPVIEW_H__