IO::All::Temp - Temporary File Support for IO::All


IO-All documentation Contained in the IO-All distribution.

Index


Code Index:

NAME

Top

IO::All::Temp - Temporary File Support for IO::All

SYNOPSIS

Top

See IO::All.

DESCRIPTION

Top

AUTHOR

Top

Ingy döt Net <ingy@cpan.org>

COPYRIGHT

Top


IO-All documentation Contained in the IO-All distribution.

package IO::All::Temp;
use strict;
use warnings;
use IO::All::File -base;

sub temp {
    my $self = shift;
    bless $self, __PACKAGE__;
    my $temp_file = IO::File::new_tmpfile()
      or $self->throw("Can't create temporary file");
    $self->io_handle($temp_file);
    $self->error_check;
    $self->autoclose(0);
    $self->is_open(1);
    return $self;
}

1;