summaryrefslogtreecommitdiff
path: root/bin/MakeProjectCreator/modules/VC71ProjectCreator.pm
diff options
context:
space:
mode:
Diffstat (limited to 'bin/MakeProjectCreator/modules/VC71ProjectCreator.pm')
-rw-r--r--bin/MakeProjectCreator/modules/VC71ProjectCreator.pm29
1 files changed, 0 insertions, 29 deletions
diff --git a/bin/MakeProjectCreator/modules/VC71ProjectCreator.pm b/bin/MakeProjectCreator/modules/VC71ProjectCreator.pm
deleted file mode 100644
index 14d92cba3a2..00000000000
--- a/bin/MakeProjectCreator/modules/VC71ProjectCreator.pm
+++ /dev/null
@@ -1,29 +0,0 @@
-package VC71ProjectCreator;
-
-# ************************************************************
-# Description : A VC7.1 Project Creator
-# Author : Chad Elliott
-# Create Date : 4/17/2003
-# ************************************************************
-
-# ************************************************************
-# Pragmas
-# ************************************************************
-
-use strict;
-
-use VC7ProjectCreator;
-
-use vars qw(@ISA);
-@ISA = qw(VC7ProjectCreator);
-
-# ************************************************************
-# Subroutine Section
-# ************************************************************
-
-sub get_vcversion {
- #my($self) = shift;
- return '7.10';
-}
-
-1;