class TStreamId |
Provides unique identification for stream within a store.
A store always assigns a new id and constructs and returns an associated TStreamId object when a new stream is created.
Public Member Functions | |
---|---|
TStreamId () | |
TStreamId ( TUint32 ) | |
void | ExternalizeL ( RWriteStream &) |
IMPORT_C void | InternalizeL ( RReadStream &) |
TUint32 | Value () |
TBool | operator!= ( TStreamId ) |
TBool | operator== ( TStreamId ) |
Private Member Functions | |
---|---|
IMPORT_C void | __DbgChkRange ( TUint32 ) |
Private Attributes | |
---|---|
TUint32 | iVal |
TStreamId | ( | ) | [inline] |
Constructs an uninitialised object. It is necessary because there are also non-default constructors in this class.
TStreamId | ( | TUint32 | aValue | ) | [inline] |
Constructs the object with the specified stream ID value.
Users of stores do not normally use this function.
In debug mode, the function checks that the supplied stream ID value is not greater than the maximum permitted value, and raises a STORE-Store 2 panic if it is. In release mode, no checking on the supplied value is done.
The checking of the supplied value is done by a private function implemented in estor. dll. This means that in debug mode, a call is made into estor.dll, but in release mode it is not.
TUint32 aValue | The stream ID value. |
void | ExternalizeL | ( | RWriteStream & | aStream | ) | const [inline] |
Externalises an object of this class to a write stream.
The presence of this function means that the standard templated operator<<() can be used to externalise objects of this class.
RWriteStream & aStream | Stream to which the object should be externalised. |
IMPORT_C void | InternalizeL | ( | RReadStream & | aStream | ) |
Internalises an object of this class from a read stream.
The presence of this function means that the standard templated operator>>() can be used to internalise objects of this class.
Note that the function has assignment semantics. It replaces the old value of the object with a new value read from the read stream.
RReadStream & aStream | Stream from which the object should be internalised. |
IMPORT_C void | __DbgChkRange | ( | TUint32 | aValue | ) | [private, static] |
TUint32 aValue |
TBool | operator!= | ( | TStreamId | anId | ) | const [inline] |
Inequality comparison operator. Use this operator to determine whether this stream id is unequal to the specified stream id.
TStreamId anId | The stream id to be compared with this stream id. |
TBool | operator== | ( | TStreamId | anId | ) | const [inline] |
Equality comparison operator. Use this operator to determine whether this stream id is equal to the specified stream id.
TStreamId anId | The stream id to be compared with this stream id. |
Copyright ©2010 Nokia Corporation and/or its subsidiary(-ies).
All rights
reserved. Unless otherwise stated, these materials are provided under the terms of the Eclipse Public License
v1.0.