Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > ade69b80cdaceefefbad10408e76f731 > files > 1057

perl-BioPerl-1.6.901-5.mga4.noarch.rpm

=head1 NAME

TestInterface - A simple subclass of Interface

=head1 DESCRIPTION

This module demonstrates how to use the generic Bio::Root::RootI
superclass.

=head1 AUTHOR

Steve Chervitz E<lt>sac@bioperl.orgE<gt>

=cut

package TestInterface;


use base qw(Bio::Root::RootI);

sub data {
    my $self = shift;
    $self->throw_not_implemented;
}

sub foo {
    my $self = shift;
    $self->throw_not_implemented;
}

sub bar {
    my $self = shift;
    $self->throw_not_implemented;
}


1;