os/persistentdata/persistentstorage/store/pcstore/src/uid.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 
    17 #include <pcstore/uid.h>
    18 #include "pcstoreconst.h"
    19 
    20 namespace PCStore
    21 {
    22 /**
    23 Compares two UIDs for equality.
    24 
    25 @param aUid The UID to be compared with this UID.
    26 @return TRUE, if the two UIDs are equal; FALSE otherwise. 
    27 */
    28 TBool TUid::operator==(const TUid& aUid) const
    29 	{
    30 	return(iUid==aUid.iUid);
    31 	}
    32 
    33 /**
    34 Compares two UIDs for inequality.
    35 
    36 @param aUid The UID to be compared with this UID.
    37 @return TRUE, if the two UIDs are unequal; FALSE otherwise. 
    38 */
    39 TBool TUid::operator!=(const TUid& aUid) const
    40 	{
    41 	return(iUid!=aUid.iUid);
    42 	}
    43 
    44 
    45 /**
    46 Constructs a Null-valued TUid object.
    47 
    48 @return The constructed Null-valued TUid object.
    49 */
    50 TUid TUid::Null()
    51 	{
    52 	TUid uid={KNullUidValue};
    53 	return uid;
    54 	}
    55 }