epoc32/include/mw/tzid.inl
branchSymbian3
changeset 4 837f303aceeb
equal deleted inserted replaced
3:e1b950c65cb4 4:837f303aceeb
       
     1 // Copyright (c) 1997-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 #ifndef __TZID_INL__
       
    17 #define __TZID_INL__
       
    18 
       
    19 /**
       
    20 Inequality operator.
       
    21 
       
    22 @param aTZId The time zone ID to compare with this one.
       
    23 
       
    24 @return ETrue if the two IDs are different, EFalse if they are the same.
       
    25 */
       
    26 inline TBool CTzId::operator!=(const CTzId& aTZId) const
       
    27 	{
       
    28 	return (!operator==(aTZId));
       
    29 	}
       
    30 
       
    31 #endif