blob: b7ca0276a821d86c8926bdafd325a35226af9560 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# $Id$
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;
|