| Ekahau documentation | Contained in the Ekahau distribution. |
Ekahau::Response::StopAreaTrackOK - Indicates a "stop area track" command succeeded.
This object is returned in response to a "stop area track" command, and indicates that the command succeeded. If the command fails, an Ekahau::Response::Error object will be returned instead.
Generally you will not want to construct these objects yourself; they are created by Ekahau::Response, and use its constructor.
Returns the string StopAreaTrackOK, to identify the type of this object.
Scott Gifford <gifford@umich.edu>, <sgifford@suspectclass.com>
Copyright (C) 2005 The Regents of the University of Michigan.
See the file LICENSE included with the distribution for license information.
| Ekahau documentation | Contained in the Ekahau distribution. |
package Ekahau::Response::StopAreaTrackOK; use base 'Ekahau::Response'; our $VERSION=Ekahau::Response::VERSION; # Written by Scott Gifford <gifford@umich.edu> # Copyright (C) 2004 The Regents of the University of Michigan. # See the file LICENSE included with the distribution for license # information. use strict; use warnings;
# Internal method sub init { warn "Created Ekahau::Response::StopAreaTrackOK object\n" if ($ENV{VERBOSE}); }
sub type { 'StopAreaTrackOK'; }
1;