package Catalyst::DispatchType; use strict; use base 'Class::Accessor::Fast'; =head1 NAME Catalyst::DispatchType - DispatchType Base Class =head1 SYNOPSIS See L. =head1 DESCRIPTION =head1 METHODS =head2 $self->list($c) =cut sub list { } =head2 $self->match( $c, $path ) =cut sub match { die "Abstract method!" } =head2 $self->register( $c, $action ) =cut sub register { } =head1 AUTHOR Matt S Trout Sebastian Riedel, C =head1 COPYRIGHT This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself. =cut 1;