The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

IPC::Run3::ProfLogReader - Read an IPC::Run3::ProfLogger file and dispatch it

SYNOPSIS

    use IPC::Run3::ProfLogReader;

    my $r = IPC::Run3::ProfLogReader->new; ## use "run3.out"
    my $r = IPC::Run3::ProfLogReader->new( Source => $fn );

    my $p = IPC::Run3::ProfPP;   ## For example
    my $r = IPC::Run3::ProfLogReader->new( ..., Handler => $p );

    $r->read;
    $r->read_all;

DESCRIPTION

Reads a log file. Use the filename "-" to read from STDIN.

LIMITATIONS

COPYRIGHT

    Copyright 2003, R. Barrie Slaymaker, Jr., All Rights Reserved

LICENSE

You may use this module under the terms of the BSD, Artistic, or GPL licenses, any version.

AUTHOR

Barrie Slaymaker <barries@slaysys.com>