| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
#!/usr/bin/env perl |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
25447
|
use warnings; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
32
|
|
|
4
|
1
|
|
|
1
|
|
6
|
use strict; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
90
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
package Gwybodaeth::Parsers::XML; |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
=head1 NAME |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
Parsers::XML - Base class for parsing XML data. |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
use base qw(XML); |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
This module is a base class for XML parsing, and is intended to be subclassed. |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=over |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=item new() |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Returns an instance of the Gwybodaeth::Parsers::XML class; |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=cut |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
sub new { |
|
29
|
1
|
|
|
1
|
1
|
68
|
my $class = shift; |
|
30
|
1
|
|
|
|
|
4
|
my $self = {}; |
|
31
|
1
|
|
|
|
|
3
|
bless $self, $class; |
|
32
|
1
|
|
|
|
|
3
|
return $self; |
|
33
|
|
|
|
|
|
|
} |
|
34
|
|
|
|
|
|
|
1; |
|
35
|
|
|
|
|
|
|
__END__ |