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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 #include <pcstore/streamid.h>
18 #include <pcstore/storewritestream.h>
19 #include <pcstore/storereadstream.h>
20 #include "pcstoreconst.h"
25 Constructs a zero stream id.
27 TStreamId::TStreamId()
32 Constructs a stream id with the specified value.
34 TStreamId::TStreamId(TUint32 aValue)
40 Gets the stream ID value encapsulated by this object
42 @return The stream ID value.
44 TUint32 TStreamId::Value() const
50 Internalizes an object of this class from a read stream.
52 @param aRs The reference to the stream from which the object should be internalized.
54 void TStreamId::Internalize(CStoreReadStream& aRs)
56 iVal = aRs.ReadUint32();
60 Externalizes an object of this class to a write stream.
62 @param aWs The reference to the stream to which the object should be externalized.
64 void TStreamId::Externalize(CStoreWriteStream& aWs) const
66 aWs.WriteUint32(iVal);