|
NAMENet::ACL::Set - Abstract parent class of Set-classes SYNOPSIS package Net::ACL::SetMyPackage;
use Net::ACL::Set;
@ISA = qw( Net::ACL::Set );
sub new { ... };
sub set { ... };
package main;
# Construction
my $set = new Net::ACL::SetMyPackage($args);
# Accessor Methods
@data = $set->set(@data);
DESCRIPTIONThis is an abstract parent class for all Net::ACL::Set* classes. It is used by the Net::ACL::Rule object. It only has a constructor new() and a method set(). Both should be replaced in any ancestor object. CONSTRUCTOR
ACCESSOR METHODS
SEE ALSONet::ACL::Rule, Net::ACL, Net::ACL::Set::Scalar, Net::ACL::Set::Union, Net::ACL::Set::Add AUTHORMartin Lorensen <bgp@martin.lorensen.dk>
|