Subversion Repositories gelsvn

Rev

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

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