00001 /* 00002 * Copyright (c) 2009 Nokia Corporation. 00003 */ 00004 00005 #ifndef __CAMERAWRAPPEREXAMPLEDOCUMENT_h__ 00006 #define __CAMERAWRAPPEREXAMPLEDOCUMENT_h__ 00007 00008 // INCLUDES 00009 #include <akndoc.h> 00010 00011 // FORWARD DECLARATIONS 00012 class CCameraWrapperExampleAppUi; 00013 class CEikApplication; 00014 00015 // CLASS DECLARATION 00016 class CCameraWrapperExampleDocument : public CAknDocument 00017 { 00018 public: 00019 // Constructors and destructor 00020 static CCameraWrapperExampleDocument* NewL (CEikApplication& aApp ); 00021 static CCameraWrapperExampleDocument* NewLC (CEikApplication& aApp ); 00022 virtual ~CCameraWrapperExampleDocument (); 00023 00024 public: 00025 // Functions from base classes 00026 CEikAppUi* CreateAppUiL (); 00027 00028 private: 00029 // Constructors 00030 void ConstructL (); 00031 CCameraWrapperExampleDocument (CEikApplication& aApp ); 00032 00033 private: 00034 // Data 00035 00036 }; 00037 00038 #endif // __CAMERAWRAPPEREXAMPLEDOCUMENT_h__ 00039 00040 // End of File