> QStream object and it "receives" data using "<<"
QStream is proxy object that supports operator overloading - eg that
fancy "<<" thing
So the line here:
oQStream := QTextStream( oQFile )
makes a stream to QFile so it can receive data via "<<" operator.
HB does not support operator overloading (or no one wrote command for that)
So this simple C++ line:
stream = QTextStream(file);
stream << something << endl;
is the same as:
oFile:write(something)
oFile:write(endl)
There is, perhaps, potential issue of character encoding. But that is
also HB specific.