os/persistentdata/persistentstorage/store/pcstore/src/streamid.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2006-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 
    17 #include <pcstore/streamid.h>
    18 #include <pcstore/storewritestream.h>
    19 #include <pcstore/storereadstream.h>
    20 #include "pcstoreconst.h"
    21 
    22 namespace PCStore
    23 {
    24 /**
    25 Constructs a zero stream id.
    26 */
    27 TStreamId::TStreamId()
    28 	:iVal(0)
    29 	{}
    30 
    31 /**
    32 Constructs a stream id with the specified value.
    33 */
    34 TStreamId::TStreamId(TUint32 aValue)
    35 	:iVal(aValue)
    36 	{}
    37 
    38 
    39 /**
    40 Gets the stream ID value encapsulated by this object
    41 
    42 @return The stream ID value. 
    43 */
    44 TUint32 TStreamId::Value() const
    45 	{
    46 	return iVal;
    47 	}
    48 
    49 /** 
    50 Internalizes an object of this class from a read stream.
    51 
    52 @param aRs The reference to the stream from which the object should be internalized. 
    53 */
    54 void TStreamId::Internalize(CStoreReadStream& aRs)
    55 	{
    56 	iVal = aRs.ReadUint32();
    57 	}
    58 
    59 /** 
    60 Externalizes an object of this class to a write stream.
    61 
    62 @param aWs The reference to the stream to which the object should be externalized. 
    63 */
    64 void TStreamId::Externalize(CStoreWriteStream& aWs) const
    65 	{
    66 	aWs.WriteUint32(iVal);
    67 	}
    68 }