| Class-Accessor-Lvalue documentation | view source | Contained in the Class-Accessor-Lvalue distribution. |
Class::Accessor::Lvalue - create Lvalue accessors
package Foo; use base qw( Class::Accessor::Lvalue ); __PACKAGE__->mk_accessors(qw( bar )) my $foo = Foo->new; $foo->bar = 42; print $foo->bar; # prints 42
This module has external dependencies on the following modules:
Class::Accessor Want
perl Build.PL perl Build test
and if all goes well
perl Build install
What changed over the last 3 revisions
Fix MANIFEST add NINJA support.
Implement proper proxy ties so that the main class correctly emulates Class::Accessor
Initial CPAN release =back
Richard Clamp <richardc@unixbeard.net> with many thanks to Yuval Kogman for helping with the groovy lvalue tie magic used in the main class.
Copyright (C) 2003 Richard Clamp. All Rights Reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Class-Accessor-Lvalue documentation | view source | Contained in the Class-Accessor-Lvalue distribution. |