summaryrefslogtreecommitdiff
path: root/ACE/MPC/modules/BCB2007ProjectCreator.pm
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/MPC/modules/BCB2007ProjectCreator.pm')
-rw-r--r--ACE/MPC/modules/BCB2007ProjectCreator.pm50
1 files changed, 50 insertions, 0 deletions
diff --git a/ACE/MPC/modules/BCB2007ProjectCreator.pm b/ACE/MPC/modules/BCB2007ProjectCreator.pm
new file mode 100644
index 00000000000..298a09a9a6e
--- /dev/null
+++ b/ACE/MPC/modules/BCB2007ProjectCreator.pm
@@ -0,0 +1,50 @@
+package BCB2007ProjectCreator;
+
+# ************************************************************
+# Description : The Borland C++ Builder 2007 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 '.cbproj';
+}
+
+
+sub get_dll_exe_template_input_file {
+ #my $self = shift;
+ return 'bcb2007exe';
+}
+
+
+sub get_dll_template_input_file {
+ #my $self = shift;
+ return 'bcb2007dll';
+}
+
+
+1;