Cleaned all new classes
[catagits/Catalyst-Runtime.git] / lib / Catalyst / DispatchType.pm
CommitLineData
b96f127f 1package Catalyst::DispatchType;
2
3use strict;
2633d7dc 4use base 'Class::Accessor::Fast';
b96f127f 5
2633d7dc 6=head1 NAME
b96f127f 7
2633d7dc 8Catalyst::DispatchType - DispatchType Base Class
b96f127f 9
2633d7dc 10=head1 SYNOPSIS
11
12See L<Catalyst>.
13
14=head1 DESCRIPTION
15
16=head1 METHODS
17
18=over 4
19
20=item $self->match( $c, $path )
21
22=cut
23
24sub match { die "Abstract method!" }
25
26=item $self->register( $c, $action )
27
28=cut
29
30sub register { return }
31
32=back
33
34=head1 AUTHOR
35
36Matt S Trout
37Sebastian Riedel, C<sri@cpan.org>
38
39=head1 COPYRIGHT
40
41This program is free software, you can redistribute it and/or modify it under
42the same terms as Perl itself.
43
44=cut
b96f127f 45
461;