clock2/clockui/adtupdater/src/adtupdaterapplication.cpp
changeset 0 f979ecb2b13e
equal deleted inserted replaced
-1:000000000000 0:f979ecb2b13e
       
     1 /*
       
     2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:   This is the source file for the CAdtUpdaterApplication class.
       
    15 *
       
    16 */
       
    17 
       
    18 // System includes
       
    19 
       
    20 // User includes
       
    21 #include "adtupdaterapplication.h"
       
    22 #include "adtupdaterdocument.h"
       
    23 #include "adtupdater.h"
       
    24 #include "clock_debug.h"
       
    25 
       
    26 // ---------------------------------------------------------
       
    27 // CAdtUpdaterApplication::CreateDocumentL
       
    28 // rest of the details are commented in the header
       
    29 // ---------------------------------------------------------
       
    30 //
       
    31 CApaDocument* CAdtUpdaterApplication::CreateDocumentL()
       
    32 	{
       
    33 	__PRINTS( "CAdtUpdaterApplication::CreateDocumentL - Entry" );
       
    34 	
       
    35 	__PRINTS( "CAdtUpdaterApplication::CreateDocumentL - Exit" );	    
       
    36 	    
       
    37 	// Create the document object
       
    38 	return CAdtUpdaterDocument::NewL( *this );
       
    39 	}
       
    40 
       
    41 // ---------------------------------------------------------
       
    42 // CAdtUpdaterApplication::CreateDocumentL
       
    43 // rest of the details are commented in the header
       
    44 // ---------------------------------------------------------
       
    45 //
       
    46 TUid CAdtUpdaterApplication::AppDllUid() const
       
    47 	{
       
    48 	__PRINTS( "CAdtUpdaterApplication::AppDllUid - Entry" );
       
    49 	
       
    50 	__PRINTS( "CAdtUpdaterApplication::AppDllUid - Exit" );
       
    51 	
       
    52 	return KAdtUpdaterAppUid;
       
    53 	}
       
    54 
       
    55 // End of file