Subversion Repositories gelsvn

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
107 bj 1
package VC71ProjectCreator;
2
 
3
# ************************************************************
4
# Description   : A VC7.1 Project Creator
5
# Author        : Chad Elliott
6
# Create Date   : 4/17/2003
7
# ************************************************************
8
 
9
# ************************************************************
10
# Pragmas
11
# ************************************************************
12
 
13
use strict;
14
 
15
use VC7ProjectCreator;
16
 
17
use vars qw(@ISA);
18
@ISA = qw(VC7ProjectCreator);
19
 
20
# ************************************************************
21
# Subroutine Section
22
# ************************************************************
23
 
24
sub get_configurable {
25
  my($self)   = shift;
26
  my($name)   = shift;
27
  my(%config) = ('vcversion'    => '7.10',
28
                 'forloopscope' => 'TRUE',
29
                );
30
  return $config{$name};
31
}
32
 
33
1;