Blame README

Packit 647083
README for Class::Accessor::Chained 0.01
Packit 647083
Packit 647083
=head1 NAME
Packit 647083
Packit 647083
Class::Accessor::Chained - make chained accessors
Packit 647083
Packit 647083
=head1 SYNOPSIS
Packit 647083
Packit 647083
 package Foo;
Packit 647083
 use base qw( Class::Accessor::Chained );
Packit 647083
 __PACKAGE__->mk_accessors(qw( foo bar baz ));
Packit 647083
Packit 647083
 my $foo = Foo->new->foo(1)->bar(2)->baz(4);
Packit 647083
 print $foo->bar; # prints 2
Packit 647083
Packit 647083
Packit 647083
=head1 DEPENDENCIES
Packit 647083
Packit 647083
This module has external dependencies on the following modules:
Packit 647083
Packit 647083
 Class::Accessor
Packit 647083
Packit 647083
=head1 INSTALLATION
Packit 647083
Packit 647083
 perl Build.PL
Packit 647083
 perl Build test
Packit 647083
Packit 647083
and if all goes well
Packit 647083
Packit 647083
 perl Build install
Packit 647083
Packit 647083
=head1 HISTORY
Packit 647083
Packit 647083
What changed over the last 3 revisions
Packit 647083
Packit 647083
=over
Packit 647083
Packit 647083
=item 0.01 Monday 24th November, 2003
Packit 647083
Packit 647083
	initial CPAN release
Packit Service 81e9a4
Packit 647083
=back
Packit 647083
Packit 647083
=head1 AUTHOR
Packit 647083
Packit 647083
Richard Clamp <richardc@unixbeard.net>
Packit 647083
Packit 647083
=head1 COPYRIGHT
Packit 647083
Packit 647083
Copyright (C) 2003 Richard Clamp.  All Rights Reserved.
Packit 647083
Packit 647083
This module is free software; you can redistribute it and/or modify it
Packit 647083
under the same terms as Perl itself.
Packit 647083
Packit 647083
=head1 SEE ALSO
Packit 647083
Packit 647083
L<Class::Accessor>, L<Class::Accessor::Chained::Fast>
Packit 647083