line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
# #TODO Inherit from the JQueue class. |
3
|
|
|
|
|
|
|
# #TODO Add in Perl documentation: Full Documentation. |
4
|
|
|
|
|
|
|
# #TODO Create a test program for this package. |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
package Comskil::JQueue::POP; |
10
|
|
|
|
|
|
|
|
11
|
1
|
|
|
1
|
|
1081
|
use strict; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
33
|
|
12
|
1
|
|
|
1
|
|
5
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
23
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
|
15
|
1
|
|
|
1
|
|
558
|
use Net::POP3_auth; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
use Comskil::JServer; |
18
|
|
|
|
|
|
|
use Comskil::JQueue; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
BEGIN { |
21
|
|
|
|
|
|
|
use Exporter(); |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS); |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
$VERSION = '0.10'; |
26
|
|
|
|
|
|
|
@ISA = qw( Exporter Comskil::JQueue ); |
27
|
|
|
|
|
|
|
@EXPORT = qw( ); |
28
|
|
|
|
|
|
|
@EXPORT_OK = qw( try ); |
29
|
|
|
|
|
|
|
%EXPORT_TAGS = ( ALL => [ qw( try ) ] ); |
30
|
|
|
|
|
|
|
} |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
END { } |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
sub new { |
35
|
|
|
|
|
|
|
my ($type,@args) = @_; |
36
|
|
|
|
|
|
|
my $self = Comskil::JQueue->new(); |
37
|
|
|
|
|
|
|
bless($self,$type); |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
return($self); |
40
|
|
|
|
|
|
|
} |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
sub try { |
44
|
|
|
|
|
|
|
my ($self,@args) = @_; |
45
|
|
|
|
|
|
|
return($self); |
46
|
|
|
|
|
|
|
} |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
1; |
50
|
|
|
|
|
|
|
__END__ |