Basic doc for each module
[gitmo/MooseX-Role-Parameterized.git] / lib / MooseX / Role / Parameterized / Parameters.pm
CommitLineData
665e848b 1package MooseX::Role::Parameterized::Parameters;
2use Moose;
3
d9e02904 4# ABSTRACT: base class for parameters
5
665e848b 6__PACKAGE__->meta->make_immutable;
7no Moose;
8
91;
10
09e02a3f 11__END__
12
13=head1 DESCRIPTION
14
15This is the base class for parameter objects. Currently empty, but I reserve
16the right to add things here.
17
18Each parameteriz-able role gets their own anonymous subclass of this;
19L<MooseX::Role::Parameterized/parameter> actually operates on these anonymous
20subclasses.
21
22Each parameteriz-ed role gets their own instance of the anonymous subclass
23(owned by the parameteriz-able role).
24
25=cut
26