File Coverage

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