summaryrefslogtreecommitdiff
path: root/ACE/MPC/modules/BCB2007ProjectCreator.pm
blob: 298a09a9a6e04976485f06939de9e09c7917a634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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;