I am wondering if I can create an abstract Zclass. By this I mean a class off which I can subclass other objects, but that class itself is not visible in any of the dropdown menus to the users. I want to do this so that at a later date I can add methods to this class and have those methods inherited by its subclasses. I hope this makes sense. Thanks Tom
On Thursday 06 September 2001 10:01 pm, Tom Cameron wrote:
I am wondering if I can create an abstract Zclass. By this I mean a class off which I can subclass other objects, but that class itself is not visible in any of the dropdown menus to the users.
I want to do this so that at a later date I can add methods to this class and have those methods inherited by its subclasses.
I hope this makes sense.
working with python would make this easy, define the class and register it only as a base class. with zclasses, hmm.. you migh trying deleting the factory thats created although i'm not sure if this would have other ill effects. cheers kapil
Tom Cameron writes:
I am wondering if I can create an abstract Zclass. By this I mean a class off which I can subclass other objects, but that class itself is not visible in any of the dropdown menus to the users. That's very simple:
Uncheck the "Create constructor object" when you create the ZClass. Dieter
participants (3)
-
Dieter Maurer -
kapil thangavelu -
Tom Cameron