File: Parser.pm

package info (click to toggle)
libnet-epp-perl 0.28-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 384 kB
  • sloc: perl: 2,540; sh: 3; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 541 bytes parent folder | download
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
30
31
32
33
34
package Net::EPP::Parser;
use base qw(XML::LibXML);
use strict;
use warnings;

=pod

=head1 NAME

Net::EPP::Parser - a wrapper around the LibXML parser.

=head1 DESCRIPTION

Nothing to see here, move along.

=cut

sub new {
    my $package = shift;
    my $self    = bless($package->SUPER::new(@_), $package);
    return $self;
}

1;

=pod

=head1 COPYRIGHT

This module is (c) 2008 - 2023 CentralNic Ltd and 2024 Gavin Brown. This module
is free software; you can redistribute it and/or modify it under the same terms
as Perl itself.

=cut