clock2/clockui/adtupdater/src/adtupdaterdocument.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 CAdtUpdaterDocument class.
       
    15 *
       
    16 */
       
    17 
       
    18 // System includes
       
    19 
       
    20 // User includes
       
    21 #include "adtupdaterdocument.h"
       
    22 #include "adtupdaterappui.h"
       
    23 #include "clock_debug.h"
       
    24 
       
    25 // ---------------------------------------------------------
       
    26 // CAdtUpdaterDocument::NewL
       
    27 // rest of the details are commented in the header
       
    28 // ---------------------------------------------------------
       
    29 //
       
    30 CAdtUpdaterDocument* CAdtUpdaterDocument::NewL( CEikApplication& aApp )
       
    31     {
       
    32     __PRINTS( "CAdtUpdaterDocument::NewL - Entry" );
       
    33     
       
    34     CAdtUpdaterDocument* selfObj = new ( ELeave ) CAdtUpdaterDocument( aApp );
       
    35     CleanupStack::PushL( selfObj );
       
    36     
       
    37     selfObj->ConstructL();
       
    38     
       
    39     CleanupStack::Pop( selfObj );
       
    40     
       
    41     __PRINTS( "CAdtUpdaterDocument::NewL - Exit" );
       
    42     
       
    43     return selfObj;
       
    44     }
       
    45 
       
    46 // ---------------------------------------------------------
       
    47 // CAdtUpdaterDocument::~CAdtUpdaterDocument
       
    48 // rest of the details are commented in the header
       
    49 // ---------------------------------------------------------
       
    50 //
       
    51 CAdtUpdaterDocument::~CAdtUpdaterDocument()
       
    52     {
       
    53     __PRINTS( "CAdtUpdaterDocument::~CAdtUpdaterDocument - Entry" );
       
    54     
       
    55     // No implementation yet.
       
    56     
       
    57     __PRINTS( "CAdtUpdaterDocument::~CAdtUpdaterDocument - Exit" );
       
    58     }
       
    59 
       
    60 // ---------------------------------------------------------
       
    61 // CAdtUpdaterDocument::CAdtUpdaterDocument
       
    62 // rest of the details are commented in the header
       
    63 // ---------------------------------------------------------
       
    64 //
       
    65 CAdtUpdaterDocument::CAdtUpdaterDocument( CEikApplication& aApp ) : CAknDocument( aApp )
       
    66     {
       
    67     __PRINTS( "CAdtUpdaterDocument::CAdtUpdaterDocument - Entry" );
       
    68     
       
    69     // No implementation yet.
       
    70     
       
    71     __PRINTS( "CAdtUpdaterDocument::CAdtUpdaterDocument - Exit" );
       
    72     }
       
    73 
       
    74 // ---------------------------------------------------------
       
    75 // CAdtUpdaterDocument::ConstructL
       
    76 // rest of the details are commented in the header
       
    77 // ---------------------------------------------------------
       
    78 //
       
    79 void CAdtUpdaterDocument::ConstructL()
       
    80     {
       
    81     __PRINTS( "CAdtUpdaterDocument::ConstructL - Entry" );
       
    82     
       
    83     // No implementation yet.
       
    84     
       
    85     __PRINTS( "CAdtUpdaterDocument::ConstructL - Exit" );
       
    86     }
       
    87 
       
    88 // ---------------------------------------------------------
       
    89 // CAdtUpdaterDocument::CreateAppUiL
       
    90 // rest of the details are commented in the header
       
    91 // ---------------------------------------------------------
       
    92 //
       
    93 CEikAppUi* CAdtUpdaterDocument::CreateAppUiL()
       
    94     {
       
    95     __PRINTS( "CAdtUpdaterDocument::CreateAppUiL - Entry" );
       
    96     
       
    97     __PRINTS( "CAdtUpdaterDocument::CreateAppUiL - Exit" );
       
    98     
       
    99     return new( ELeave ) CAdtUpdaterAppUi;
       
   100     }
       
   101 
       
   102 // End of file