File Coverage

blib/lib/Ekahau/Response/StopLocationTrackOK.pm
Criterion Covered Total %
statement 9 11 81.8
branch 0 2 0.0
condition n/a
subroutine 3 5 60.0
pod 1 2 50.0
total 13 20 65.0


line stmt bran cond sub pod time code
1             package Ekahau::Response::StopLocationTrackOK;
2 6     6   35 use base 'Ekahau::Response'; our $VERSION=Ekahau::Response::VERSION;
  6         14  
  6         821  
3              
4             # Written by Scott Gifford
5             # Copyright (C) 2004 The Regents of the University of Michigan.
6             # See the file LICENSE included with the distribution for license
7             # information.
8              
9 6     6   35 use strict;
  6         14  
  6         564  
10 6     6   34 use warnings;
  6         12  
  6         1345  
11             =head1 NAME
12              
13             Ekahau::Response::StopLocationTrackOK - Indicates a "stop location track" command succeeded.
14              
15             =head1 SYNOPSIS
16              
17             This object is returned in response to a "stop location track"
18             command, and indicates that the command succeeded. If the command
19             fails, an L object will be returned instead.
20              
21             =head1 DESCRIPTION
22              
23             =head2 Constructor
24              
25             Generally you will not want to construct these objects yourself; they
26             are created by L, and use its constructor.
27              
28             =head2 Methods
29              
30             =cut
31              
32             # Internal method
33             sub init
34             {
35 0 0   0 0   warn "Created Ekahau::Response::StopLocationTrackOK object\n"
36             if ($ENV{VERBOSE});
37             }
38              
39             =head3 type ( )
40              
41             Returns the string I, to identify the type of this object.
42              
43             =cut
44              
45             sub type
46             {
47 0     0 1   'StopLocationTrackOK';
48             }
49              
50             =head1 AUTHOR
51              
52             Scott Gifford Egifford@umich.eduE, Esgifford@suspectclass.comE
53              
54             Copyright (C) 2005 The Regents of the University of Michigan.
55              
56             See the file LICENSE included with the distribution for license
57             information.
58              
59              
60             =head1 SEE ALSO
61              
62             L, L, L.
63              
64             =cut
65              
66             1;