in reply to OO - best way to have protected methods
Likewise Class::Declare::Attribues does something similarpackage SomeClass; use Attribute::Protected; sub foo : Public { } sub _bar : Private { } sub _baz : Protected { }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: OO - best way to have protected methods
by gargle (Chaplain) on Aug 18, 2005 at 05:34 UTC | |
by astroboy (Chaplain) on Aug 18, 2005 at 09:11 UTC |