keepalive/flextimer/server/engine/inc/flextimeritem.inl
branchRCL_3
changeset 58 83ca720e2b9a
parent 57 05bc53fe583b
child 62 bb1f80fb7db2
equal deleted inserted replaced
57:05bc53fe583b 58:83ca720e2b9a
     1 /*
       
     2  * Copyright (c) 2010 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  * Description:
       
    13  * This file contains inline functions of FlexTimerItem class.
       
    14  *
       
    15  */
       
    16 
       
    17 // Protection against nested includes
       
    18 #ifndef FLEXTIMERITEM_INL
       
    19 #define FLEXTIMERITEM_INL
       
    20 
       
    21 // ---------------------------------------------------------------------------
       
    22 // GetMinAbsoluteTime
       
    23 // ---------------------------------------------------------------------------
       
    24 //
       
    25 inline void CFlexTimerItem::GetMinAbsoluteTime( TTime& aMinAbsoluteTime )
       
    26     {
       
    27     aMinAbsoluteTime = iAbsoluteMinTime;
       
    28     }
       
    29 // ---------------------------------------------------------------------------
       
    30 // GetMaxAbsoluteTime
       
    31 // ---------------------------------------------------------------------------
       
    32 //
       
    33 inline void CFlexTimerItem::GetMaxAbsoluteTime( TTime& aMaxAbsoluteTime )
       
    34     {
       
    35     aMaxAbsoluteTime = iAbsoluteMaxTime;
       
    36     }
       
    37 // ---------------------------------------------------------------------------
       
    38 // IsAbortedAtSystemTimeChange
       
    39 // ---------------------------------------------------------------------------
       
    40 //
       
    41 inline TBool CFlexTimerItem::IsAbortedAtSystemTimeChange()
       
    42     {
       
    43     return iAbortAtSystemTimeChange;
       
    44     }
       
    45 
       
    46 #endif  //FLEXTIMERITEM_INL