You are viewing the version of this documentation from Perl 5.41.11. This is a development version of Perl.

CONTENTS

NAME

TAP::Object - Base class that provides common functionality to all TAP::* modules

VERSION

Version 3.50

SYNOPSIS

package TAP::Whatever;

use strict;

use base 'TAP::Object';

# new() implementation by TAP::Object
sub _initialize {
    my ( $self, @args) = @_;
    # initialize your object
    return $self;
}

# ... later ...
my $obj = TAP::Whatever->new(@args);