taskswitcher/client/s60/src/tstaskmonitorhistory.cpp
changeset 116 305818acdca4
child 127 7b66bc3c6dc9
equal deleted inserted replaced
112:dbfb5e38438b 116:305818acdca4
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     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".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17 #include "tstaskmonitorhistory.h"
       
    18 
       
    19 TsTaskMonitorHistory::TsTaskMonitorHistory(const QByteArray &key, 
       
    20                                            const QDateTime &updateTime) :
       
    21 mKey(key), mUpdateTime(updateTime)
       
    22 {
       
    23     
       
    24 }
       
    25 
       
    26 void TsTaskMonitorHistory::setOffset(int offset)
       
    27 {
       
    28     mOffset = offset;
       
    29 }
       
    30 
       
    31 int TsTaskMonitorHistory::offset() const
       
    32 {
       
    33     return mOffset;
       
    34 }
       
    35 
       
    36 bool TsTaskMonitorHistory::isEqual(const TsTaskMonitorHistory &item) const
       
    37 {
       
    38     if (mKey == item.mKey) {
       
    39         return true;
       
    40     }
       
    41     return false;
       
    42 }
       
    43 
       
    44 bool TsTaskMonitorHistory::isUpdated(const TsTaskMonitorHistory &item) const
       
    45 {
       
    46     Q_ASSERT(mKey == item.mKey);
       
    47     if (mUpdateTime != item.mUpdateTime) {
       
    48         return true;
       
    49     }
       
    50     return false;    
       
    51 }