> Can I do the following:
>
> class myinput : DOMInputSource, BinMemInputStream
> {
>
> public:
>
> myinput ( ) { };
>
> ~myinput ( ) { };
>
> BinInputStream* makestream ( ) { return this };
>
> }
You shouldn't do this, because the parser will want to delete the
BinMemInputStream instance, and I don't think there's any guarantee the
parser won't try to access to DOMInputSource instance after it has deleted
the stream.
As an side, perhaps you meant to derive from DOMInputSource using public
inheritence, rather than private?
Dave
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]