line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package MobilePhone; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
33293
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
36
|
|
4
|
1
|
|
|
1
|
|
6
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
282
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
=head1 NAME |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
MobilePhone - A Collection of Classes and Function modules related to manipulating Mobile Phone data. |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 VERSION |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Version 0.01 |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=cut |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
our $VERSION = '0.01'; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 AUTHOR |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Ali Craigmile, C<< >> |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 BUGS |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Please report any bugs or feature requests to C, or through |
25
|
|
|
|
|
|
|
the web interface at L. I will be notified, and then you'll |
26
|
|
|
|
|
|
|
automatically be notified of progress on your bug as I make changes. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 SUPPORT |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
You can find documentation for this module with the perldoc command. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
perldoc MobilePhone |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
You can also look for information at: |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=over 4 |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=item * RT: CPAN's request tracker |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
L |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=item * AnnoCPAN: Annotated CPAN documentation |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
L |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=item * CPAN Ratings |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
L |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=item * Search CPAN |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
L |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=back |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
Copyright 2007 Ali Craigmile, all rights reserved. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
63
|
|
|
|
|
|
|
under the same terms as Perl itself. |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=cut |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
1; # End of MobilePhone |