sl@0: // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: sl@0: #include sl@0: #include "pcstoreconst.h" sl@0: sl@0: namespace PCStore sl@0: { sl@0: /** sl@0: Compares two UIDs for equality. sl@0: sl@0: @param aUid The UID to be compared with this UID. sl@0: @return TRUE, if the two UIDs are equal; FALSE otherwise. sl@0: */ sl@0: TBool TUid::operator==(const TUid& aUid) const sl@0: { sl@0: return(iUid==aUid.iUid); sl@0: } sl@0: sl@0: /** sl@0: Compares two UIDs for inequality. sl@0: sl@0: @param aUid The UID to be compared with this UID. sl@0: @return TRUE, if the two UIDs are unequal; FALSE otherwise. sl@0: */ sl@0: TBool TUid::operator!=(const TUid& aUid) const sl@0: { sl@0: return(iUid!=aUid.iUid); sl@0: } sl@0: sl@0: sl@0: /** sl@0: Constructs a Null-valued TUid object. sl@0: sl@0: @return The constructed Null-valued TUid object. sl@0: */ sl@0: TUid TUid::Null() sl@0: { sl@0: TUid uid={KNullUidValue}; sl@0: return uid; sl@0: } sl@0: }