package Ekahau::Response::StopAreaTrackOK; use base 'Ekahau::Response'; our $VERSION=Ekahau::Response::VERSION; # Written by Scott Gifford # 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; =head1 NAME Ekahau::Response::StopAreaTrackOK - Indicates a "stop area track" command succeeded. =head1 SYNOPSIS This object is returned in response to a "stop area track" command, and indicates that the command succeeded. If the command fails, an L object will be returned instead. =head1 DESCRIPTION =head2 Constructor Generally you will not want to construct these objects yourself; they are created by L, and use its constructor. =head2 Methods =cut # Internal method sub init { warn "Created Ekahau::Response::StopAreaTrackOK object\n" if ($ENV{VERBOSE}); } =head3 type ( ) Returns the string I, to identify the type of this object. =cut sub type { 'StopAreaTrackOK'; } =head1 AUTHOR Scott Gifford Egifford@umich.eduE, Esgifford@suspectclass.comE Copyright (C) 2005 The Regents of the University of Michigan. See the file LICENSE included with the distribution for license information. =head1 SEE ALSO L, L, L. =cut 1;