examples/SDKExamples/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 and/or its subsidiary(-ies).
00010 *  All rights reserved.
00011 *  This component and the accompanying materials are made available
00012 *  under the terms of "Eclipse Public License v1.0"
00013 *  which accompanies this distribution, and is available
00014 *  at the URL "http://www.eclipse.org/legal/epl-v10.html".
00015 * ==============================================================================
00016 */
00017 
00018 
00019 // INCLUDE FILES
00020 #include "CSAsyncDocument.h"
00021 #include "CSAsyncApplication.h"
00022 
00023 // ========================= MEMBER FUNCTIONS ==================================
00024 
00025 // -----------------------------------------------------------------------------
00026 // CCSAsyncApplication::CreateDocumentL()
00027 // Creates a CSAsync document, and return a pointer to it
00028 // -----------------------------------------------------------------------------
00029 //
00030 CApaDocument* CCSAsyncApplication::CreateDocumentL()
00031     {
00032     return ( static_cast<CApaDocument*>( CCSAsyncDocument::NewL( *this ) ) );
00033     }
00034 
00035 // ----------------------------------------------------------------------------
00036 // TUid CCSAsyncApplication::AppDllUid()
00037 // Returns the UID for the CSAsync application
00038 // ----------------------------------------------------------------------------
00039 //
00040 TUid CCSAsyncApplication::AppDllUid() const
00041     {
00042     return KUidCSAsyncApp;
00043     }
00044 
00045 
00046 // End of File

Generated by  doxygen 1.6.2