diff -r f345bda72bc4 -r 43e37759235e Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/csasyncapplication_8cpp_source.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/csasyncapplication_8cpp_source.html Tue Mar 30 16:16:55 2010 +0100 @@ -0,0 +1,60 @@ + + +
+ +00001 /* +00002 * ============================================================================== +00003 * Name : csasyncapplication.cpp +00004 * Part of : CSAsync +00005 * Interface : +00006 * Description : +00007 * Version : +00008 * +00009 * Copyright (c) 2004-2006 Nokia Corporation. +00010 * This material, including documentation and any related +00011 * computer programs, is protected by copyright controlled by +00012 * Nokia Corporation. +00013 * ============================================================================== +00014 */ +00015 +00016 +00017 // INCLUDE FILES +00018 #include "CSAsyncDocument.h" +00019 #include "CSAsyncApplication.h" +00020 +00021 // ========================= MEMBER FUNCTIONS ================================== +00022 +00023 // ----------------------------------------------------------------------------- +00024 // CCSAsyncApplication::CreateDocumentL() +00025 // Creates a CSAsync document, and return a pointer to it +00026 // ----------------------------------------------------------------------------- +00027 // +00028 CApaDocument* CCSAsyncApplication::CreateDocumentL() +00029 { +00030 return ( static_cast<CApaDocument*>( CCSAsyncDocument::NewL( *this ) ) ); +00031 } +00032 +00033 // ---------------------------------------------------------------------------- +00034 // TUid CCSAsyncApplication::AppDllUid() +00035 // Returns the UID for the CSAsync application +00036 // ---------------------------------------------------------------------------- +00037 // +00038 TUid CCSAsyncApplication::AppDllUid() const +00039 { +00040 return KUidCSAsyncApp; +00041 } +00042 +00043 +00044 // End of File +