Kurt Schwehr wrote:
> Thanks for the excellent response setting me straight. Now to figure
> out what dumb thing I did to make my code not work...
If you have trouble then post the code (or a cut down version
demonstrating the code) - it always helps to have real code with real
error messages
Jean-Michel,
Thanks for the excellent response setting me straight. Now to figure
out what dumb thing I did to make my code not work...
-kurt
On Jun 24, 12:23 pm, Jean-Michel Pichavant
wrote:
> Kurt Schwehr wrote:
> > I'm trying to build an OO system for encoding and decoding
> > datapackets.
Kurt Schwehr wrote:
I'm trying to build an OO system for encoding and decoding
datapackets. I'd like the parent class to have an encode function
that uses each of the child classes' packing methods. It appears that
this works for attributes of children accessed by the parent, but not
for method
Kurt Schwehr wrote:
> I'm trying to build an OO system for encoding and decoding
> datapackets. I'd like the parent class to have an encode function
> that uses each of the child classes' packing methods. It appears that
> this works for attributes of children accessed by the parent, but not
> fo
I'm trying to build an OO system for encoding and decoding
datapackets. I'd like the parent class to have an encode function
that uses each of the child classes' packing methods. It appears that
this works for attributes of children accessed by the parent, but not
for methods. Is that right? Fo