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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 #include <pcstore/uid.h>
18 #include "pcstoreconst.h"
23 Compares two UIDs for equality.
25 @param aUid The UID to be compared with this UID.
26 @return TRUE, if the two UIDs are equal; FALSE otherwise.
28 TBool TUid::operator==(const TUid& aUid) const
30 return(iUid==aUid.iUid);
34 Compares two UIDs for inequality.
36 @param aUid The UID to be compared with this UID.
37 @return TRUE, if the two UIDs are unequal; FALSE otherwise.
39 TBool TUid::operator!=(const TUid& aUid) const
41 return(iUid!=aUid.iUid);
46 Constructs a Null-valued TUid object.
48 @return The constructed Null-valued TUid object.
52 TUid uid={KNullUidValue};