tstaskmonitor/utils/src/tsentrykey.cpp
changeset 104 9b022b1f357c
parent 83 156f692b1687
equal deleted inserted replaced
103:b99b84bcd2d1 104:9b022b1f357c
    39 
    39 
    40 // -----------------------------------------------------------------------------
    40 // -----------------------------------------------------------------------------
    41 //
    41 //
    42 // -----------------------------------------------------------------------------
    42 // -----------------------------------------------------------------------------
    43 //
    43 //
    44 void TTsEntryKey::ExternalizeL(RWriteStream& output)
    44 void TTsEntryKey::ExternalizeL(RWriteStream& output) const
    45 {
    45 {
    46     output.WriteInt32L(mParentId);
    46     output.WriteInt32L(mParentId);
    47 }
    47 }
    48 
    48 
    49 // -----------------------------------------------------------------------------
    49 // -----------------------------------------------------------------------------
    52 //
    52 //
    53 void TTsEntryKey::InternalizeL(RReadStream& input)
    53 void TTsEntryKey::InternalizeL(RReadStream& input)
    54 {
    54 {
    55     mParentId = input.ReadInt32L();
    55     mParentId = input.ReadInt32L();
    56 }
    56 }
       
    57 
       
    58 // -----------------------------------------------------------------------------
       
    59 //
       
    60 // -----------------------------------------------------------------------------
       
    61 //
       
    62 TInt TTsEntryKey::WindowGroupId() const
       
    63 {
       
    64     return mParentId;
       
    65 }