TCardinality 's use is best explained by an example:
If an integral value that needs externalising is known to be non-negative and cannot exceed 2^29 (e.g. the length of a descriptor) - instead of storing a 32-bit value in the stream, you can use TCardinality to compress the external format. So instead of
writeStream.WriteUint32L(myValue); ... myValue=readStream.ReadUint32L();
you would use
writeStream << TCardinality(myValue); ... TCardinality c; readStream >> c; myValue=c;
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.