I need to port some existing C++ code to Symbian OS v6.1. The trouble is that the code contains lots of stream objects (iostream, fstream...) and as you all know iostream.h is not part of the C standard library supported by Symbian.
So I don't see how to port this code (except than rewriting the code in standard C with stdio.h C library).
Is there a better solution?
Could I use symbian stream class for that?
Unfortunately I had to rewrite the istream and ostream classes.
I used a FILE* object as a protected variable to be able to have all functionnalities I needed from iostream.
I don't know if this is the best solution but at least that works. I am still interested if you find a better (maybe faster) way to do that.