Re: Pico, How to add new class to existing object?

2008-03-31 Thread Alexander Burger
On Mon, Mar 31, 2008 at 03:33:12PM +0200, Jon Kleiser wrote: >(setq X (new '(+A +B))) > > .. is it possible later to include the class +C among the classes +A > and +B for this object X? If yes, how? If you want it as an additional prefix class, you can simply do (push X '+C) This will

Pico, How to add new class to existing object?

2008-03-31 Thread Jon Kleiser
I have a couple of OO questions: If I have defined some classes +A, +B and +C, and made an object X by doing ... (setq X (new '(+A +B))) .. is it possible later to include the class +C among the classes +A and +B for this object X? If yes, how? And if I wanted this object X to have a new