diff -r 43e37759235e -r 51a74ef9ed63 Symbian3/SDK/Source/GUID-9C6D94B2-8F03-5A4D-9AEC-7C3FEA0E1ACA.dita --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Symbian3/SDK/Source/GUID-9C6D94B2-8F03-5A4D-9AEC-7C3FEA0E1ACA.dita Wed Mar 31 11:11:55 2010 +0100 @@ -0,0 +1,32 @@ + + + + + +Dictionary +read streamsHow to read from a stream located in a dictionary store. +

Applications must construct an RDictionaryReadStream object +before they can read from a stream located in a dictionary store.

+

The dictionary store in which the stream is located and the UID associated +with that stream are specified when the RDictionaryReadStream is +opened.

+

The following code fragment is typical. store is a pointer +to an opened dictionary store. RDictionaryReadStream::OpenLC() opens +the stream associated with the UID theuid:

+... +TUid theuid; +CDictionaryStore* store; +... +RDictionaryReadStream instream; +instream.OpenLC(*store,theuid); +TSomeData data; +instream >> data; +CleanupStack::PopAndDestroy(); +... +
\ No newline at end of file