blob: 0d92077d60cc194170c3a07083c5de9a16cffc75 (
plain)
1
2
3
4
5
6
|
Inheritable, overridable class data
Class::Data::Inheritable is for creating accessor/mutators to class
data. That is, if you want to store something about your class as a
whole (instead of about a single object). This data is then inherited
by your subclasses and can be overriden.
|