mirror of
https://github.com/mangosfour/server.git
synced 2025-12-16 22:37:02 +00:00
(based on cipherCOM's repo commit d3d8934) Signed-off-by: VladimirMangos <vladimir@getmangos.com>
30 lines
No EOL
549 B
Perl
30 lines
No EOL
549 B
Perl
# $Id: VCP.pm 91813 2010-09-17 07:52:52Z johnnyw $
|
|
|
|
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; |