applicationmanagement/server/src/AppMgmtSrvDocument.cpp
changeset 0 3ce708148e4d
equal deleted inserted replaced
-1:000000000000 0:3ce708148e4d
       
     1 /*
       
     2 * Copyright (c) 2009 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:  Implementation of applicationmanagement components
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include <StringLoader.h>
       
    21 #include "AppMgmtSrvDocument.h"
       
    22 #include "AppMgmtSrvUI.h"
       
    23 
       
    24 // ================= MEMBER FUNCTIONS =======================
       
    25 
       
    26 // ---------------------------------------------------------------------------
       
    27 // Desctructor
       
    28 // ---------------------------------------------------------------------------
       
    29 //
       
    30 CAppMgmtSrvDocument::~CAppMgmtSrvDocument()
       
    31     {
       
    32     }
       
    33 
       
    34 void CAppMgmtSrvDocument::ConstructL()
       
    35     {
       
    36 
       
    37     }
       
    38 
       
    39 CAppMgmtSrvDocument* CAppMgmtSrvDocument::NewL(CAknApplication& aApp)
       
    40     {
       
    41 
       
    42     CAppMgmtSrvDocument* self = new (ELeave) CAppMgmtSrvDocument( aApp );
       
    43     CleanupStack::PushL(self);
       
    44     self->ConstructL();
       
    45     CleanupStack::Pop(); //self
       
    46     return self;
       
    47     }
       
    48 
       
    49 CEikAppUi* CAppMgmtSrvDocument::CreateAppUiL()
       
    50     {
       
    51 
       
    52     return new (ELeave) CAppMgmtSrvUi;
       
    53     }
       
    54 
       
    55 // End of File