clock2/clockui/uilayer/src/clockapplication.cpp
branchRCL_3
changeset 30 bd7edf625bdd
parent 0 f979ecb2b13e
equal deleted inserted replaced
29:12af337248b1 30:bd7edf625bdd
       
     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 CClockApplication class.
       
    15 *
       
    16 */
       
    17 
       
    18 // System includes
       
    19 
       
    20 // User includes
       
    21 #include "clockapplication.h"
       
    22 #include "clockdocument.h"
       
    23 #include "clock.h"
       
    24 
       
    25 // ---------------------------------------------------------
       
    26 // CClockApplication::CreateDocumentL
       
    27 // rest of the details are commented in the header
       
    28 // ---------------------------------------------------------
       
    29 //
       
    30 CApaDocument* CClockApplication::CreateDocumentL()
       
    31 	{
       
    32 	// Create the document object
       
    33 	return CClockDocument::NewL( *this );
       
    34 	}
       
    35 
       
    36 // ---------------------------------------------------------
       
    37 // CClockApplication::CreateDocumentL
       
    38 // rest of the details are commented in the header
       
    39 // ---------------------------------------------------------
       
    40 //
       
    41 TUid CClockApplication::AppDllUid() const
       
    42 	{
       
    43 	return KClockAppUid;
       
    44 	}
       
    45 
       
    46 // End of file