1 package LaTeX::TikZ::Mod::Raw;
8 LaTeX::TikZ::Mod::Raw - A literal TikZ modifier.
16 our $VERSION = '0.03';
18 use LaTeX::TikZ::Interface;
24 This class consumes the L<LaTeX::TikZ::Mod> role, and as such implements the L</tag>, L</covers>, L</declare> and L</apply> methods.
28 with 'LaTeX::TikZ::Mod';
34 The bare string the raw mod is made of.
53 ref($self) . '/' . $self->content;
72 sub apply { $_[0]->content }
74 LaTeX::TikZ::Interface->register(
78 __PACKAGE__->new(content => $_[0]);
82 __PACKAGE__->meta->make_immutable;
86 L<LaTeX::TikZ>, L<LaTeX::TikZ::Mod>.
90 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
92 You can contact me by mail or on C<irc.perl.org> (vincent).
96 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>.
97 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
101 You can find documentation for this module with the perldoc command.
105 =head1 COPYRIGHT & LICENSE
107 Copyright 2010,2011,2012,2013,2014,2015 Vincent Pit, all rights reserved.
109 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
113 1; # End of LaTeX::TikZ::Mod::Raw