Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > a79f4a249d5ed7adbbf9ebdc8669d1ca > files > 5

perl-Class-Accessor-Chained-0.01-13.fc15.noarch.rpm

NAME
    Class::Accessor::Chained - make chained accessors

SYNOPSIS
     package Foo;
     use base qw( Class::Accessor::Chained );
     __PACKAGE__->mk_accessors(qw( foo bar baz ));

     my $foo = Foo->new->foo(1)->bar(2)->baz(4);
     print $foo->bar; # prints 2

DEPENDENCIES
    This module has external dependencies on the following modules:

     Class::Accessor

INSTALLATION
     perl Build.PL
     perl Build test

    and if all goes well

     perl Build install

HISTORY
    What changed over the last 3 revisions

    0.01 Monday 24th November, 2003
                initial CPAN release
        =back

AUTHOR
    Richard Clamp <richardc@unixbeard.net>

COPYRIGHT
    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.

SEE ALSO
    Class::Accessor, Class::Accessor::Chained::Fast

POD ERRORS
    Hey! The above document had some coding errors, which are explained
    below:

    Around line 43:
        You forgot a '=back' before '=head1'