[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Accessor names for flavor instance variables
Consider the following two (trivial) flavors:
(defflavor f
(a b c)
()
:readable-instance-variables)
(defflavor g
(d)
(f))
I would like the accessor functions for the instance
variables of g to be g-a, g-b, ... Unfortunately, it seems
that the accessor function name is based on the accessor
name of the mixin. Short of changing the conc-name of f
(which works only if you arre going to mix it one place)
how do I accomplish this? (I have tried explicitly supplying
conc-name for g, but that does not affect the instance variables
inherited from f.)
David Strip
drstrip@sandia.gov