appinstall_plat/appmngr2runtimeapi/src/appmngr2appinfo.cpp
changeset 0 ba25891c3a9e
equal deleted inserted replaced
-1:000000000000 0:ba25891c3a9e
       
     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:   AppInfo implementation
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "appmngr2appinfo.h"
       
    20 
       
    21 
       
    22 // ======== MEMBER FUNCTIONS ========
       
    23 
       
    24 // ---------------------------------------------------------------------------
       
    25 // CAppMngr2AppInfo::ConstructL()
       
    26 // ---------------------------------------------------------------------------
       
    27 //
       
    28 EXPORT_C void CAppMngr2AppInfo::ConstructL()
       
    29     {
       
    30     CAppMngr2InfoBase::ConstructL();
       
    31     }
       
    32 
       
    33 // ---------------------------------------------------------------------------
       
    34 // CAppMngr2AppInfo::~CAppMngr2AppInfo()
       
    35 // ---------------------------------------------------------------------------
       
    36 //
       
    37 EXPORT_C CAppMngr2AppInfo::~CAppMngr2AppInfo()
       
    38     {
       
    39     }
       
    40 
       
    41 // ---------------------------------------------------------------------------
       
    42 // CAppMngr2AppInfo::CAppMngr2AppInfo()
       
    43 // ---------------------------------------------------------------------------
       
    44 //
       
    45 EXPORT_C CAppMngr2AppInfo::CAppMngr2AppInfo( CAppMngr2Runtime& aRuntime,
       
    46         RFs& aFsSession ) : CAppMngr2InfoBase( aRuntime, aFsSession )
       
    47     {
       
    48     }
       
    49