| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package XAS::Class; |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
our $VERSION = '0.02'; |
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
use Badger::Class |
|
6
|
1
|
|
|
|
|
7
|
version => $VERSION, |
|
7
|
|
|
|
|
|
|
uber => 'Badger::Class', |
|
8
|
|
|
|
|
|
|
constant => { |
|
9
|
|
|
|
|
|
|
UTILS => 'XAS::Utils', |
|
10
|
|
|
|
|
|
|
CONSTANTS => 'XAS::Constants', |
|
11
|
|
|
|
|
|
|
} |
|
12
|
1
|
|
|
1
|
|
3
|
; |
|
|
1
|
|
|
|
|
2
|
|
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
1; |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
__END__ |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 NAME |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
XAS::Class - A Perl extension for the XAS environment |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
use XAS::Class |
|
25
|
|
|
|
|
|
|
version => '0.01', |
|
26
|
|
|
|
|
|
|
base => 'XAS::Base' |
|
27
|
|
|
|
|
|
|
; |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
This module ties the XAS environment to the base Badger object framework. It |
|
32
|
|
|
|
|
|
|
exposes the defined constants and utilities that reside in L<XAS::Constants|XAS::Constants> and |
|
33
|
|
|
|
|
|
|
L<XAS::Utils|XAS::Utils>. Which inherits from L<Badger::Constants|https://metacpan.org/pod/Badger::Constants> and |
|
34
|
|
|
|
|
|
|
L<Badger::Utils|http://metacpan.org/pod/Badger::Utils>. |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 SEE ALSO |
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=over 4 |
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=item L<XAS|XAS> |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=back |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 AUTHOR |
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Kevin L. Esteb, E<lt>kevin@kesteb.usE<gt> |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
Copyright (C) 2014 Kevin L. Esteb |
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
|
53
|
|
|
|
|
|
|
the terms of the Artistic License 2.0. For details, see the full text |
|
54
|
|
|
|
|
|
|
of the license at http://www.perlfoundation.org/artistic_license_2_0. |
|
55
|
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=cut |