Object oriented module is not an Exporter. 2 subs added, also.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
This commit is contained in:
Joe Atzberger (siptest 2008-06-04 18:14:45 -05:00 committed by Joshua Ferraro
parent ba673bcc43
commit 2cc75039d8

View file

@ -8,7 +8,7 @@ package Sip::Configuration::Institution;
use strict;
use warnings;
use English;
use Exporter;
# use Exporter;
sub new {
my ($class, $obj) = @_;
@ -24,8 +24,17 @@ sub new {
sub name {
my $self = shift;
return $self->{name};
}
sub policy {
my $self = shift;
return $self->{policy};
}
sub parms {
my $self = shift;
return $self->{parms};
}
1;