A while ago, for a little zoo-based example, I wrote a base class ANIMAL, some sub-classes CAT, MOUSE, etc. a generic method FEED taking an ANIMAL parameter and some methods specialised on each ANIMAL sub-type.
After writing the second and third class, method pair I realised I was writing same thing over and over and decided to write a macro DEF-ANIMAL-SUBCLASS that expanded into a PROGN that defined the new sub-class and the appropriate method.
I then realised that I had just given my users a way of defining their own ANIMAL sub-types, something they might find useful! However, while they might just do that in a running image, I didn't have a way of saving their new ANIMAL type so that, in the event that the image was restarted, any new ANIMAL type would be re-created for them (without them having to re-evaluate the macro).
Is there a conventional way of doing this?
Is it something that should not be done?
Any hints would be gratefully received!
Cheers,
P