最新的版本ACE-5.6.8,刚从外文网上搬下,与大家分享.
源代码在线查看: vcp.pm
# $Id: VCP.pm 80826 2008-03-04 14:51:23Z wotte $
package PerlACE::MSProject::VCP;
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} = "evc.com";
bless ($self, $class);
return $self;
}
###############################################################################
# Accessors
1;