00001
00002
00003
00004
00005
00006
00007
00008 #ifdef __SERIES60_3X__
00009 #include <eikstart.h>
00010 #endif
00011
00012 #include "TestAppDocument.h"
00013 #include "TestAppApplication.h"
00014
00015
00016 static const TUid KUidTestAppApp = {0x0F084DF8};
00017
00018 CApaDocument* CTestAppApplication::CreateDocumentL()
00019 {
00020
00021 CApaDocument* document = CTestAppDocument::NewL(*this);
00022 return document;
00023 }
00024
00025 TUid CTestAppApplication::AppDllUid() const
00026 {
00027
00028 return KUidTestAppApp;
00029 }
00030
00031
00032
00033