ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/EV/EV.pm
Revision: 1.1
Committed: Fri Oct 26 16:50:05 2007 UTC (16 years, 6 months ago) by root
Branch: MAIN
Log Message:
looks good

File Contents

# User Rev Content
1 root 1.1 =head1 NAME
2    
3     EV - perl interface to libevent, monkey.org/~provos/libevent/
4    
5     =head1 SYNOPSIS
6    
7     use EV;
8    
9     =head1 DESCRIPTION
10    
11     This module provides an interface to libevent
12     (L<http://monkey.org/~provos/libevent/>).
13    
14     =cut
15    
16     package EV;
17    
18     use strict;
19    
20     BEGIN {
21     our $VERSION = '0.01';
22     use XSLoader;
23     XSLoader::load "EV", $VERSION;
24     }
25    
26     =head1 FUNCTIONAL INTERFACE
27    
28     =over 4
29    
30     =back
31    
32    
33     =head1 OBJECT-ORIENTED INTERFACE
34    
35     The object oriented interface lets you configure your own encoding or
36     decoding style, within the limits of supported formats.
37    
38     =over 4
39    
40     =back
41    
42     =head1 BUGS
43    
44     =cut
45    
46     our $NPRI = 4;
47     our $BASE = init;
48     priority_init $NPRI;
49    
50     1;
51    
52     =head1 AUTHOR
53    
54     Marc Lehmann <schmorp@schmorp.de>
55     http://home.schmorp.de/
56    
57     =cut
58