examples/S60CppExamples/ClientServerAsync/client/src/csasyncapplication.cpp

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

Generated by  doxygen 1.6.2