Symbian Developer Library

SYMBIAN OS V6.1 EDITION FOR C++

[Index] [Glossary] [Previous] [Next]



Location: s32strm.h
Link against: N/A

operator>>()

template <class T>
RReadStream& operator>>(RReadStream& aStream,T& anObject);

Support

Supported from 5.0

Description

Internalises objects belonging to a store-aware class from the specified stream.

A store-aware class is one which defines the InternalizeL() member function. The store framework causes the operator to call the classes InternalizeL() member function, passing aStream as a parameter.

Almost any type of object may be internalised using this operator.

Parameters

RReadStream& aStream

A reference to the read stream.

T& anObject

The object of type <class T> to be internalised from the stream aStream.

Return value

RReadStream& aStream

A reference to the read stream.