00001 /* ==================================================================== 00002 * File: TestAppApplication.cpp 00003 * Created: 28/06/06 by Forum Nokia 00004 * Author: 00005 * Copyright (c): , All rights reserved 00006 * ==================================================================== */ 00007 00008 #ifdef __SERIES60_3X__ 00009 #include <eikstart.h> 00010 #endif 00011 00012 #include "TestAppDocument.h" 00013 #include "TestAppApplication.h" 00014 00015 // UID for the application, this should correspond to the uid defined in the mmp file 00016 static const TUid KUidTestAppApp = {0x0F084DF8}; 00017 00018 CApaDocument* CTestAppApplication::CreateDocumentL() 00019 { 00020 // Create an TestApp document, and return a pointer to it 00021 CApaDocument* document = CTestAppDocument::NewL(*this); 00022 return document; 00023 } 00024 00025 TUid CTestAppApplication::AppDllUid() const 00026 { 00027 // Return the UID for the TestApp application 00028 return KUidTestAppApp; 00029 } 00030 00031 00032 // End of File 00033
Copyright ©2010 Nokia Corporation and/or its subsidiary(-ies).
All rights
reserved. Unless otherwise stated, these materials are provided under the terms of the Eclipse Public License
v1.0.