I have a class, MyClass, that implements the InternalizeL function and
therefore, as I understand, can make use of the >> operator. I now have a
const TDesC8& parameter coming in to a function and this parameter includes
the information needed to create one object of MyClass. However, the
InternalizeL function wants and RReadStream parameter. How do I pass my
TDesC8 variable as an argument to the InternalizeL function?
InternalizeL
joape382 wrote:I have a class, MyClass, that implements the InternalizeL function and
therefore, as I understand, can make use of the >> operator. I now have a
const TDesC8& parameter coming in to a function and this parameter includes
the information needed to create one object of MyClass. However, the
InternalizeL function wants and RReadStream parameter. How do I pass my
TDesC8 variable as an argument to the InternalizeL function?
What I needed was a RDesReadStream 😊