emailservices/emailserver/src/FsEmailGlobalDialogsDocument.cpp
changeset 0 8466d47a6819
equal deleted inserted replaced
-1:000000000000 0:8466d47a6819
       
     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:  FSMailServer main application document implementation
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "emailtrace.h"
       
    20 #include "FsEmailGlobalDialogsAppUi.h"
       
    21 #include "FsEmailGlobalDialogsDocument.h"
       
    22 
       
    23 CFsEmailGlobalDialogsDocument* CFsEmailGlobalDialogsDocument::NewL( CEikApplication& aApp )
       
    24     {
       
    25     FUNC_LOG;
       
    26     CFsEmailGlobalDialogsDocument* self = NewLC( aApp );
       
    27     CleanupStack::Pop( self );
       
    28     return self;
       
    29     }
       
    30 
       
    31 CFsEmailGlobalDialogsDocument* CFsEmailGlobalDialogsDocument::NewLC( CEikApplication& aApp )
       
    32     {
       
    33     FUNC_LOG;
       
    34     CFsEmailGlobalDialogsDocument* self = new (ELeave) CFsEmailGlobalDialogsDocument( aApp );
       
    35     CleanupStack::PushL( self );
       
    36     self->ConstructL();
       
    37     return self;
       
    38     }
       
    39 
       
    40 void CFsEmailGlobalDialogsDocument::ConstructL()
       
    41     {
       
    42     FUNC_LOG;
       
    43     }    
       
    44 
       
    45 CFsEmailGlobalDialogsDocument::CFsEmailGlobalDialogsDocument( CEikApplication& aApp )
       
    46     : CAknDocument(aApp)
       
    47     {
       
    48     FUNC_LOG;
       
    49     }
       
    50 
       
    51 CFsEmailGlobalDialogsDocument::~CFsEmailGlobalDialogsDocument()
       
    52     {
       
    53     FUNC_LOG;
       
    54     }
       
    55 
       
    56 CEikAppUi* CFsEmailGlobalDialogsDocument::CreateAppUiL()
       
    57     {
       
    58     FUNC_LOG;
       
    59     CEikAppUi* appUi = new (ELeave) CFsEmailGlobalDialogsAppUi;
       
    60     return appUi;
       
    61     }
       
    62