I'm working on a small framework and I was trying to use the twriter and treader classes to stream it when I found an inconsistency between the 2 classes mainly
TWriter = class.........
....
public
constructor Create(ADriver: TAbstractObjectWriter); //<-------- this is missing on the reader
constructor Create(Stream: TStream; BufSize: Integer);
TReader = class....
....
public
constructor Create(Stream: TStream; BufSize: Integer);
can someone look at it and inform me if they have the same problem? just trying to make sure that I haven't changed anything by mistake with all my tinkering the last weeks.
thank you.