00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #include <eikapp.h>
00019
00020 #include "IRDeviceDocument.h"
00021 #include "IRDeviceAppUi.h"
00022
00023
00024
00025 CIRDeviceDocument* CIRDeviceDocument::NewL(CEikApplication& aApplication)
00026 {
00027 CIRDeviceDocument* self = new (ELeave) CIRDeviceDocument(aApplication);
00028 CleanupStack::PushL(self);
00029 self->ConstructL();
00030 CleanupStack::Pop(self);
00031 return self;
00032 }
00033
00034 CIRDeviceDocument::CIRDeviceDocument(CEikApplication& aApp)
00035 : CAknDocument(aApp)
00036 {
00037 }
00038
00039 void CIRDeviceDocument::ConstructL()
00040 {
00041 }
00042
00043 CEikAppUi* CIRDeviceDocument::CreateAppUiL()
00044 {
00045 return static_cast <CEikAppUi*> (new (ELeave) CIRDeviceAppUi());
00046 }
00047
00048