First public contribution.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
25 EXPORT_C TBool TFindFieldInfo::operator==(const TFindFieldInfo& aInfo)const
28 /** Compares two field information objects for equality.
30 @param aInfo The field information object to compare with this one.
31 @return ETrue if the two objects are the same. EFalse if they are different. */
33 if (iFieldCountInRange!=aInfo.iFieldCountInRange)
35 if (iFirstFieldLen!=aInfo.iFirstFieldLen)
37 if (iFirstFieldPos!=aInfo.iFirstFieldPos)
45 EXPORT_C TBool TFindFieldInfo::operator!=(const TFindFieldInfo& aInfo)const
46 // Inequality operator.
48 /** Compares two field information objects for inequality.
50 @param aInfo The field information object to compare with this one.
51 @return ETrue if the two objects are different. EFalse if they are the same. */
52 {return !(operator==(aInfo));}