Subversion Repositories gelsvn

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
218 bj 1
package BDSProjectCreator;
2
 
3
# ************************************************************
4
# Description   : The Borland Developer Studio Project Creator
5
# Author        : Johnny Willemsen
6
# Create Date   : 14/12/2005
7
# ************************************************************
8
 
9
# ************************************************************
10
# Pragmas
11
# ************************************************************
12
 
13
use strict;
14
 
15
use ProjectCreator;
16
use WinProjectBase;
17
use XMLProjectBase;
18
 
19
use vars qw(@ISA);
20
@ISA = qw(XMLProjectBase WinProjectBase ProjectCreator);
21
 
22
# ************************************************************
23
# Subroutine Section
24
# ************************************************************
25
 
26
sub crlf {
27
  #my($self) = shift;
28
  return "\n";
29
}
30
 
31
 
32
sub project_file_extension {
33
  #my($self) = shift;
34
  return '.bdsproj';
35
}
36
 
37
 
38
sub get_dll_exe_template_input_file {
39
  #my($self) = shift;
40
  return 'bdsexe';
41
}
42
 
43
 
44
sub get_dll_template_input_file {
45
  #my($self) = shift;
46
  return 'bdsdll';
47
}
48
 
49
 
50
1;