summaryrefslogtreecommitdiff
path: root/modules/VC71ProjectCreator.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2004-10-05 15:23:59 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2004-10-05 15:23:59 +0000
commitd3cdc033f9c520f014c37e08d31ddf17bac2cd57 (patch)
treef2713414ba4e727c4f73e2a526d769bec3bdfa0b /modules/VC71ProjectCreator.pm
parent7d111738bb7c89e4381e0ea76e938fd70fa73414 (diff)
downloadMPC-d3cdc033f9c520f014c37e08d31ddf17bac2cd57.tar.gz
ChangeLogTag: Tue Oct 5 10:21:20 2004 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/VC71ProjectCreator.pm')
-rw-r--r--modules/VC71ProjectCreator.pm10
1 files changed, 7 insertions, 3 deletions
diff --git a/modules/VC71ProjectCreator.pm b/modules/VC71ProjectCreator.pm
index 14d92cba..5f880e42 100644
--- a/modules/VC71ProjectCreator.pm
+++ b/modules/VC71ProjectCreator.pm
@@ -21,9 +21,13 @@ use vars qw(@ISA);
# Subroutine Section
# ************************************************************
-sub get_vcversion {
- #my($self) = shift;
- return '7.10';
+sub get_configurable {
+ my($self) = shift;
+ my($name) = shift;
+ my(%config) = ('vcversion' => '7.10',
+ 'forloopscope' => 'TRUE',
+ );
+ return $config{$name};
}
1;