Files
agc_1-X/libs/Asterisk.pm
T
root 9c9de75826 1.1.10 release
git-svn-id: svn://192.168.202.10@1 3d104415-ff17-0410-8863-d5cf3c621b8a
2006-07-07 14:57:59 +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;