X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FMutable.pm;fp=lib%2FLaTeX%2FTikZ%2FSet%2FMutable.pm;h=0000000000000000000000000000000000000000;hb=1c53f7e28198adfb2905667acd5741f163832d7b;hp=e7518cd55f71e8d56ce85558723634ad61ca2be0;hpb=b8f42942311854cb0ef8a3e34c0145846639cd2e;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Set/Mutable.pm b/lib/LaTeX/TikZ/Set/Mutable.pm deleted file mode 100644 index e7518cd..0000000 --- a/lib/LaTeX/TikZ/Set/Mutable.pm +++ /dev/null @@ -1,72 +0,0 @@ -package LaTeX::TikZ::Set::Mutable; - -use strict; -use warnings; - -=head1 NAME - -LaTeX::TikZ::Set::Mutable - A role for set objects that can be appended to. - -=head1 VERSION - -Version 0.02 - -=head1 DESCRIPTION - -L objects that are mutable consume this role. -This forces them to implement an C method describing how more elements can be added to the set. - -=cut - -our $VERSION = '0.02'; - -use Any::Moose 'Role'; - -=head1 METHODS - -This method is required by the interface : - -=over 4 - -=item * - -C - -=back - -=cut - -requires qw< - add ->; - -=head1 SEE ALSO - -L, L. - -=head1 AUTHOR - -Vincent Pit, C<< >>, L. - -You can contact me by mail or on C (vincent). - -=head1 BUGS - -Please report any bugs or feature requests to C, or through the web interface at L. -I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. - -=head1 SUPPORT - -You can find documentation for this module with the perldoc command. - - perldoc LaTeX::TikZ - -=head1 COPYRIGHT & LICENSE - -Copyright 2010 Vincent Pit, all rights reserved. - -This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. - -=cut - -1; # End of LaTeX::TikZ::Set::Mutable