]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/blob - lib/LaTeX/TikZ/Mod.pm
b5921e9bcd3199d79b662e84a1481804e56af81c
[perl/modules/LaTeX-TikZ.git] / lib / LaTeX / TikZ / Mod.pm
1 package LaTeX::TikZ::Mod;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 LaTeX::TikZ::Mod - Base role for LaTeX::TikZ modifiers.
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 use Any::Moose 'Util::TypeConstraints';
20
21 requires qw(
22  tag
23  cover
24  declare
25  apply
26 );
27
28 coerce 'LaTeX::TikZ::Mod'
29     => from 'Str'
30     => via { LaTeX::TikZ::Mod::Raw->new(content => $_) };
31
32 =head1 AUTHOR
33
34 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
35
36 You can contact me by mail or on C<irc.perl.org> (vincent).
37
38 =head1 BUGS
39
40 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>.
41 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
42
43 =head1 SUPPORT
44
45 You can find documentation for this module with the perldoc command.
46
47     perldoc LaTeX::TikZ
48
49 =head1 COPYRIGHT & LICENSE
50
51 Copyright 2010 Vincent Pit, all rights reserved.
52
53 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
54
55 =cut
56
57 1; # End of LaTeX::TikZ::Mod