| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Net::GPSD3::Return::SUBFRAME; |
|
2
|
1
|
|
|
1
|
|
6
|
use strict; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
33
|
|
|
3
|
1
|
|
|
1
|
|
5
|
use warnings; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
31
|
|
|
4
|
1
|
|
|
1
|
|
5
|
use base qw{Net::GPSD3::Return::Unknown}; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
154
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
our $VERSION='0.12'; |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
=head1 NAME |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
Net::GPSD3::Return::SUBFRAME - Net::GPSD3 Return SUBFRAME Object |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Provides a Perl object interface to the SUBFRAME object returned by the GPSD daemon. |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
An example JSON object: |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 METHODS PROPERTIES |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 class |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Returns the object class |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 string |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Returns the JSON string |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head2 parent |
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
Return the parent Net::GPSD object |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 device |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=cut |
|
37
|
|
|
|
|
|
|
|
|
38
|
1
|
|
|
1
|
1
|
4
|
sub device {shift->{"device"}}; |
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 BUGS |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Log on RT and Send to gpsd-dev email list |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 SUPPORT |
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
DavisNetworks.com supports all Perl applications including this package. |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Try gpsd-dev email list |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 AUTHOR |
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
Michael R. Davis |
|
53
|
|
|
|
|
|
|
CPAN ID: MRDVT |
|
54
|
|
|
|
|
|
|
STOP, LLC |
|
55
|
|
|
|
|
|
|
domain=>michaelrdavis,tld=>com,account=>perl |
|
56
|
|
|
|
|
|
|
http://www.stopllc.com/ |
|
57
|
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head1 COPYRIGHT |
|
59
|
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
This program is free software licensed under the... |
|
61
|
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
The BSD License |
|
63
|
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
The full text of the license can be found in the LICENSE file included with this module. |
|
65
|
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head1 SEE ALSO |
|
67
|
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
L, L, L |
|
69
|
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=cut |
|
71
|
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
1; |