Ekahau::Response::DeviceList - A list of devices visible to Ekahau


Ekahau documentation Contained in the Ekahau distribution.

Index


Code Index:

NAME

Top

Ekahau::Response::DeviceList - A list of devices visible to Ekahau

SYNOPSIS

Top

Contains a list of devices visible to Ekahau. This response only contains the device identifiers, and no other information about the devices. This class inherits from Ekahau::Response , and methods that class can be used on this object.

DESCRIPTION

Top

Constructor

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

Methods

devices ( )

Returns the list of device identifiers contained in this response.

type ( )

Returns the string DeviceList, 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::DeviceProperties (Ekahau::DeviceProperties), Ekahau::Base.


Ekahau documentation Contained in the Ekahau distribution.
package Ekahau::Response::DeviceList;
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::DeviceList object\n"
	if ($ENV{VERBOSE});
}

sub devices
{
    my $self = shift;
    keys %{$self->{params}};
}

sub type
{
    'DeviceList';
}

1;