summaryrefslogtreecommitdiffstats
path: root/linux-x86/lib/perl-base/SelectSaver.pm
blob: 4ccb837eecbc297fdc5f21a5980ab16363e8ba5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package SelectSaver;

our $VERSION = '1.02';

require 5.000;
use Carp;
use Symbol;

sub new {
    @_ >= 1 && @_ <= 2 or croak 'usage: SelectSaver->new( [FILEHANDLE] )';
    my $fh = select;
    my $self = bless \$fh, $_[0];
    select qualify($_[1], caller) if @_ > 1;
    $self;
}

sub DESTROY {
    my $self = $_[0];
    select $$self;
}

1;