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 BDS4ProjectCreator;
# ************************************************************
# Description : The Borland Developer Studio 4 Project Creator
# Author : Johnny Willemsen
# Create Date : 14/12/2005
# ************************************************************
# ************************************************************
# Pragmas
# ************************************************************
use strict;
use ProjectCreator;
use BorlandPropertyBase;
use XMLProjectBase;
use vars qw(@ISA);
@ISA = qw(XMLProjectBase BorlandPropertyBase 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;
|