Class-Accessor-Lvalue README


Class-Accessor-Lvalue documentation  | view source Contained in the Class-Accessor-Lvalue distribution.

Index


NAME

Top

Class::Accessor::Lvalue - create Lvalue accessors

SYNOPSIS

Top

 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




DEPENDENCIES

Top

This module has external dependencies on the following modules:

 Class::Accessor
 Want

INSTALLATION

Top

 perl Build.PL
 perl Build test

and if all goes well

 perl Build install

HISTORY

Top

What changed over the last 3 revisions

0.11 Tuesday 16th December, 2003
	Fix MANIFEST
	add NINJA support.




0.10 Monday, 15th December, 2003
	Implement proper proxy ties so that the main class correctly emulates
	Class::Accessor




0.01 Friday, 12th December, 2003
	Initial CPAN release
=back

AUTHOR

Top

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

Top

SEE ALSO

Top

Class::Accessor, Class::Accessor::Lvalue::Fast


Class-Accessor-Lvalue documentation  | view source Contained in the Class-Accessor-Lvalue distribution.