Files
ViciDialSVN/agc_2-X/branches/agc_2.0.5/extras/Asterisk.pm
T
mattf 295941e007 Created stable release branch of 2.0.5
git-svn-id: svn://192.168.202.10@1074 3d104415-ff17-0410-8863-d5cf3c621b8a
2009-03-15 13:59:55 +00:00

21 lines
261 B
Perl

package Asterisk;
require 5.004;
$VERSION = '0.08';
sub version { $VERSION; }
sub new {
my ($class, %args) = @_;
my $self = {};
$self->{configfile} = undef;
$self->{config} = {};
bless $self, ref $class || $class;
return $self;
}
sub DESTROY { }
1;