javamanager/javaregistry/legacy/installedappsregistry/inc/installedappsregistryentry.inl
changeset 21 2a9601315dfc
equal deleted inserted replaced
18:e8e63152f320 21:2a9601315dfc
       
     1 /*
       
     2 * Copyright (c) 2002-2003 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:  CInstalledAppsRegistryEntry class's inline methods are here.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // -----------------------------------------------------------------------------
       
    20 // CInstalledAppsRegistryEntry::NewL
       
    21 // -----------------------------------------------------------------------------
       
    22 //
       
    23 inline CInstalledAppsRegistryEntry* CInstalledAppsRegistryEntry::NewL()
       
    24 {
       
    25     CInstalledAppsRegistryEntry* self = NewLC();
       
    26     CleanupStack::Pop(self);
       
    27     return self;
       
    28 }
       
    29 
       
    30 // -----------------------------------------------------------------------------
       
    31 // CInstalledAppsRegistryEntry::NewL
       
    32 // -----------------------------------------------------------------------------
       
    33 //
       
    34 inline CInstalledAppsRegistryEntry* CInstalledAppsRegistryEntry::NewL
       
    35 (const CInstalledAppsRegistryEntry& aOther)
       
    36 {
       
    37     CInstalledAppsRegistryEntry* self = NewLC(aOther);
       
    38     CleanupStack::Pop(self);
       
    39     return self;
       
    40 }
       
    41 
       
    42 // -----------------------------------------------------------------------------
       
    43 // CInstalledAppsRegistryEntry::NewL
       
    44 // -----------------------------------------------------------------------------
       
    45 //
       
    46 inline CInstalledAppsRegistryEntry* CInstalledAppsRegistryEntry::NewL
       
    47 (RReadStream& aStream)
       
    48 {
       
    49     CInstalledAppsRegistryEntry* self = NewLC(aStream);
       
    50     CleanupStack::Pop(self);
       
    51     return self;
       
    52 }