summaryrefslogtreecommitdiff
path: root/ACE/MPC/modules/SLEProjectCreator.pm
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/MPC/modules/SLEProjectCreator.pm')
-rw-r--r--ACE/MPC/modules/SLEProjectCreator.pm43
1 files changed, 43 insertions, 0 deletions
diff --git a/ACE/MPC/modules/SLEProjectCreator.pm b/ACE/MPC/modules/SLEProjectCreator.pm
new file mode 100644
index 00000000000..2a1508beb29
--- /dev/null
+++ b/ACE/MPC/modules/SLEProjectCreator.pm
@@ -0,0 +1,43 @@
+package SLEProjectCreator;
+
+# ************************************************************
+# Description : The SLE Project Creator
+# Author : Johnny Willemsen
+# Create Date : 3/23/2003
+# ************************************************************
+
+# ************************************************************
+# Pragmas
+# ************************************************************
+
+use strict;
+
+use ProjectCreator;
+use XMLProjectBase;
+
+use vars qw(@ISA);
+@ISA = qw(XMLProjectBase ProjectCreator);
+
+# ************************************************************
+# Subroutine Section
+# ************************************************************
+
+sub project_file_extension {
+ #my $self = shift;
+ return '.vpj';
+}
+
+
+sub get_dll_exe_template_input_file {
+ #my $self = shift;
+ return 'sleexe';
+}
+
+
+sub get_dll_template_input_file {
+ #my $self = shift;
+ return 'sledll';
+}
+
+
+1;