diff -r f345bda72bc4 -r 43e37759235e Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/threadaoapplication_8cpp_source.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/threadaoapplication_8cpp_source.html Tue Mar 30 16:16:55 2010 +0100 @@ -0,0 +1,41 @@ + + +
+ +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 +