Ekahau::Response::StopAreaTrackOK - Indicates a "stop area track" command succeeded.


Ekahau documentation Contained in the Ekahau distribution.

Index


Code Index:

NAME

Top

Ekahau::Response::StopAreaTrackOK - Indicates a "stop area track" command succeeded.

SYNOPSIS

Top

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.

DESCRIPTION

Top

Constructor

Generally you will not want to construct these objects yourself; they are created by Ekahau::Response, and use its constructor.

Methods

type ( )

Returns the string StopAreaTrackOK, to identify the type of this object.

AUTHOR

Top

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.

SEE ALSO

Top

Ekahau::Response, Ekahau::Base, Ekahau::Response::Error.


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;