Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package VC8ProjectCreator;
# ************************************************************
# Description : A VC8 Project Creator
# Author : Johnny Willemsen
# Create Date : 4/21/2004
# ************************************************************
# ************************************************************
# Pragmas
# ************************************************************
use strict;
use VC7ProjectCreator;
use vars qw(@ISA);
@ISA = qw(VC7ProjectCreator);
# ************************************************************
# Subroutine Section
# ************************************************************
sub get_configurable {
my($self) = shift;
my($name) = shift;
my(%config) = ('vcversion' => '8.00',
);
return $config{$name};
}
1;