server/dep/ACE_wrappers/bin/PerlACE/MSProject/DSP.pm
cipherCOM 571f510ee4 [11162] Changed ACE lib to same version but with configure script
(based on cipherCOM's repo commit d3d8934)

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
2011-02-14 12:51:16 +03:00

28 lines
No EOL
538 B
Perl

# $Id: DSP.pm 91813 2010-09-17 07:52:52Z johnnyw $
package PerlACE::MSProject::DSP;
use strict;
use PerlACE::MSProject;
our @ISA = ("PerlACE::MSProject");
###############################################################################
# Constructor
sub new
{
my $proto = shift;
my $class = ref ($proto) || $proto;
my $self = $class->SUPER::new (@_);
$self->{COMPILER} = "msdev.com";
bless ($self, $class);
return $self;
}
###############################################################################
1;