summaryrefslogtreecommitdiff
path: root/ACE/MPC/modules/BDS4ProjectCreator.pm
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/MPC/modules/BDS4ProjectCreator.pm')
-rw-r--r--ACE/MPC/modules/BDS4ProjectCreator.pm50
1 files changed, 50 insertions, 0 deletions
diff --git a/ACE/MPC/modules/BDS4ProjectCreator.pm b/ACE/MPC/modules/BDS4ProjectCreator.pm
new file mode 100644
index 00000000000..a3fea2f90ad
--- /dev/null
+++ b/ACE/MPC/modules/BDS4ProjectCreator.pm
@@ -0,0 +1,50 @@
+package BDS4ProjectCreator;
+
+# ************************************************************
+# Description : The Borland Developer Studio 4 Project Creator
+# Author : Johnny Willemsen
+# Create Date : 14/12/2005
+# ************************************************************
+
+# ************************************************************
+# Pragmas
+# ************************************************************
+
+use strict;
+
+use ProjectCreator;
+use BorlandProjectBase;
+use XMLProjectBase;
+
+use vars qw(@ISA);
+@ISA = qw(XMLProjectBase BorlandProjectBase ProjectCreator);
+
+# ************************************************************
+# Subroutine Section
+# ************************************************************
+
+sub crlf {
+ #my $self = shift;
+ return "\n";
+}
+
+
+sub project_file_extension {
+ #my $self = shift;
+ return '.bdsproj';
+}
+
+
+sub get_dll_exe_template_input_file {
+ #my $self = shift;
+ return 'bds4exe';
+}
+
+
+sub get_dll_template_input_file {
+ #my $self = shift;
+ return 'bds4dll';
+}
+
+
+1;