Revision 8 (by ahitrov@rambler.ru, 2010/03/29 11:46:38) Contenido UTF-8 core files
package Contenido::MVC::DispatchType;

use strict;

sub new {
        my $proto = shift;
        my $class = ref($proto) || $proto;
        my $self =  {};
        return bless $self, $class;
}

sub match {
        return undef;
}

sub register {
        return undef;
}                                                      
                                                      
sub after_register {
        return undef;
}

1;