00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #include <eikapp.h>
00018
00019 #include "ContactWriteNewFieldDocument.h"
00020 #include "ContactWriteNewFieldAppUi.h"
00021
00022 CContactWriteNewFieldDocument::CContactWriteNewFieldDocument(CEikApplication& aApp)
00023 : CAknDocument(aApp)
00024 {
00025 }
00026
00027 CEikAppUi* CContactWriteNewFieldDocument::CreateAppUiL()
00028 {
00029 return new (ELeave) CContactWriteNewFieldAppUi();
00030 }
00031
00032