examples/SDKExamples/ClientServerSync/client/src/cssyncapplication.cpp

00001 /*
00002 * ==============================================================================
00003 *  Name        : cssyncapplication.cpp
00004 *  Part of     : CSSync
00005 *  Interface   :
00006 *  Description :
00007 *  Version     :
00008 *
00009 *  Copyright (c) 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 "CSSyncDocument.h"
00021 #include "CSSyncApplication.h"
00022 
00023 // ========================= MEMBER FUNCTIONS ==================================
00024 
00025 // -----------------------------------------------------------------------------
00026 // CCSSyncApplication::CreateDocumentL()
00027 // Creates a CSSync document, and return a pointer to it
00028 // -----------------------------------------------------------------------------
00029 //
00030 CApaDocument* CCSSyncApplication::CreateDocumentL()
00031     {
00032     return( static_cast<CApaDocument*>( CCSSyncDocument::NewL( *this ) ) );
00033     }
00034 
00035 // -----------------------------------------------------------------------------
00036 // CCSSyncApplication::AppDllUid()
00037 // Return the UID for the CSSync application
00038 // -----------------------------------------------------------------------------
00039 //
00040 TUid CCSSyncApplication::AppDllUid() const
00041     {
00042     return KUidCSSyncApp;
00043     }
00044 
00045 
00046 // End of File

Generated by  doxygen 1.6.2