| Ekahau documentation | Contained in the Ekahau distribution. |
Ekahau::Response::DeviceList - A list of devices visible to Ekahau
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.
Generally you will not want to construct these objects yourself; they are created by Ekahau::Response, and use its constructor.
Returns the list of device identifiers contained in this response.
Returns the string DeviceList, 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::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;