00001 /* 00002 * Copyright © 2008 Nokia Corporation. 00003 */ 00004 00005 00006 // INCLUDES 00007 #include "ThreadAODocument.h" 00008 #include "ThreadAOApplication.h" 00009 00010 // UID for the application; this should correspond to the uid defined in the 00011 // mmp file 00012 const TUid KUidThreadApp = {0xE01FF1CB}; 00013 00014 CApaDocument* CThreadAOApplication::CreateDocumentL() 00015 { 00016 // Create an ThreadAO document, and return a pointer to it 00017 return (static_cast<CApaDocument*>(CThreadAODocument::NewL(*this))); 00018 } 00019 00020 TUid CThreadAOApplication::AppDllUid() const 00021 { 00022 // Return the UID for the Thread application 00023 return KUidThreadApp; 00024 } 00025