最新的版本ACE-5.6.8,刚从外文网上搬下,与大家分享.

源代码在线查看: vcp.pm

软件大小: 24894 K
上传用户: guozhongjiesg02
关键词: ACE 版本
下载地址: 免注册下载 普通下载 VIP

相关代码

				# $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;			

相关资源