summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-04-17 16:48:23 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-04-17 16:48:23 +0000
commit967995768e95e13154ad8c27bf563c26ddd25d85 (patch)
tree7ac4ac83a0823c3f1d7754ee52de5803add6d5ef
parentcdc767865c29f5395409d470cc9a80d004991100 (diff)
downloadMPC-967995768e95e13154ad8c27bf563c26ddd25d85.tar.gz
ChangeLogTag: Mon Apr 5 10:43:03 2004 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--modules/VC71ProjectCreator.pm29
1 files changed, 29 insertions, 0 deletions
diff --git a/modules/VC71ProjectCreator.pm b/modules/VC71ProjectCreator.pm
new file mode 100644
index 00000000..14d92cba
--- /dev/null
+++ b/modules/VC71ProjectCreator.pm
@@ -0,0 +1,29 @@
+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;