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