]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/blob - lib/LaTeX/TikZ/Set/Mutable.pm
Initial commit
[perl/modules/LaTeX-TikZ.git] / lib / LaTeX / TikZ / Set / Mutable.pm
1 package LaTeX::TikZ::Set::Mutable;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 LaTeX::TikZ::Set::Mutable - A role for set objects that can be appended to.
9
10 =head1 VERSION
11
12 Version 0.01
13
14 =cut
15
16 our $VERSION = '0.01';
17
18 use Any::Moose 'Role';
19
20 requires qw(
21  add
22 );
23
24 =head1 AUTHOR
25
26 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
27
28 You can contact me by mail or on C<irc.perl.org> (vincent).
29
30 =head1 BUGS
31
32 Please report any bugs or feature requests to C<bug-latex-tikz at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=LaTeX-TikZ>.
33 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
34
35 =head1 SUPPORT
36
37 You can find documentation for this module with the perldoc command.
38
39     perldoc LaTeX::TikZ
40
41 =head1 COPYRIGHT & LICENSE
42
43 Copyright 2010 Vincent Pit, all rights reserved.
44
45 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
46
47 =cut
48
49 1; # End of LaTeX::TikZ::Set::Mutable