summaryrefslogtreecommitdiff
path: root/modules/VC10ProjectCreator.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2009-05-07 15:44:53 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2009-05-07 15:44:53 +0000
commit27d14dd78fd850e1edf88289d5be521333db2fc3 (patch)
tree84a26ca2281bb3c01a9bf662f17154cc4a49e54f /modules/VC10ProjectCreator.pm
parentf385d046c86cfd46a2a13937acaaa863e6c2df38 (diff)
downloadMPC-27d14dd78fd850e1edf88289d5be521333db2fc3.tar.gz
ChangeLogTag: Thu May 7 15:39:17 UTC 2009 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/VC10ProjectCreator.pm')
-rw-r--r--modules/VC10ProjectCreator.pm15
1 files changed, 2 insertions, 13 deletions
diff --git a/modules/VC10ProjectCreator.pm b/modules/VC10ProjectCreator.pm
index b6e5a23d..caf93286 100644
--- a/modules/VC10ProjectCreator.pm
+++ b/modules/VC10ProjectCreator.pm
@@ -12,20 +12,9 @@ package VC10ProjectCreator;
use strict;
-use VC8ProjectCreator;
+use VC9ProjectCreator;
use vars qw(@ISA);
-@ISA = qw(VC8ProjectCreator);
-
-my %config = ('vcversion' => '9.00');
-
-# ************************************************************
-# Subroutine Section
-# ************************************************************
-
-sub get_configurable {
- my($self, $name) = @_;
- return $config{$name};
-}
+@ISA = qw(VC9ProjectCreator);
1;