00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef __ABOUT_VIEW_H__
00020 #define __ABOUT_VIEW_H__
00021
00022
00023
00024 #include "BrowserView.h"
00025
00026
00027
00033 class CAboutView: public CBrowserView
00034 {
00035 public:
00036
00044 static CAboutView* NewL();
00045
00053 static CAboutView* NewLC();
00054
00059 virtual ~CAboutView();
00060
00061 private:
00062
00067 CAboutView();
00068
00073 void ConstructL();
00074
00079 void ConstructContainerL();
00080 };
00081
00082
00083 #endif // __ABOUT_VIEW_H__
00084
00085
00086