644334520763370b8f58ef720affcc1dd885a06c
[dh-make-perl] / dev / arm / libclass-accessor-chained-perl / libclass-accessor-chained-perl-0.01.1~debian / README
1 README for Class::Accessor::Chained 0.01
2
3 =head1 NAME
4
5 Class::Accessor::Chained - make chained accessors
6
7 =head1 SYNOPSIS
8
9  package Foo;
10  use base qw( Class::Accessor::Chained );
11  __PACKAGE__->mk_accessors(qw( foo bar baz ));
12
13  my $foo = Foo->new->foo(1)->bar(2)->baz(4);
14  print $foo->bar; # prints 2
15
16
17 =head1 DEPENDENCIES
18
19 This module has external dependencies on the following modules:
20
21  Class::Accessor
22
23 =head1 INSTALLATION
24
25  perl Build.PL
26  perl Build test
27
28 and if all goes well
29
30  perl Build install
31
32 =head1 HISTORY
33
34 What changed over the last 3 revisions
35
36 =over
37
38 =item 0.01 Monday 24th November, 2003
39
40         initial CPAN release
41 =back
42
43 =head1 AUTHOR
44
45 Richard Clamp <richardc@unixbeard.net>
46
47 =head1 COPYRIGHT
48
49 Copyright (C) 2003 Richard Clamp.  All Rights Reserved.
50
51 This module is free software; you can redistribute it and/or modify it
52 under the same terms as Perl itself.
53
54 =head1 SEE ALSO
55
56 L<Class::Accessor>, L<Class::Accessor::Chained::Fast>
57