File: Win32.pm

package info (click to toggle)
libxml-stream-perl 1.24-4%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 952 kB
  • sloc: perl: 4,821; xml: 64; makefile: 4
file content (29 lines) | stat: -rw-r--r-- 388 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package XML::Stream::IO::Select::Win32;

=head1 NAME

XML::Stream::IO::Select::Win32 - Fake filehandle support for XML::Stream

=head1 SYNOPSIS

  You should have no reason to use this directly.

=cut

use strict;
use warnings;

use vars qw( $VERSION );

$VERSION = "1.24";

use base 'IO::Select';

sub can_read {
    my $vec = shift;
    my $timeout = shift;

    $vec->handles();
}

1;