#include <e32cmn.h>
class TRefByValue |
Public Member Functions | |
---|---|
TRefByValue(T &) | |
operator T &() |
A templated class which encapsulates a reference to an object within a wrapper.
The wrapper object can be passed to a function as a value type. This allows a reference to be passed to a function as a value type.
This wrapper object is commonly termed a value reference.
TRefByValue | ( | T & | aRef | ) | [inline] |
Constructs this value reference for the specified referenced object.
Parameters | |
---|---|
aRef | The referenced object. |