Subversion Repositories gelsvn

Rev

Rev 107 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 107 Rev 217
1
package SLEProjectCreator;
1
package SLEProjectCreator;
2
 
2
 
3
# ************************************************************
3
# ************************************************************
4
# Description   : The SLE Project Creator
4
# Description   : The SLE Project Creator
5
# Author        : Johnny Willemsen
5
# Author        : Johnny Willemsen
6
# Create Date   : 3/23/2003
6
# Create Date   : 3/23/2003
7
# ************************************************************
7
# ************************************************************
8
 
8
 
9
# ************************************************************
9
# ************************************************************
10
# Pragmas
10
# Pragmas
11
# ************************************************************
11
# ************************************************************
12
 
12
 
13
use strict;
13
use strict;
14
 
14
 
15
use ProjectCreator;
15
use ProjectCreator;
-
 
16
use XMLProjectBase;
16
 
17
 
17
use vars qw(@ISA);
18
use vars qw(@ISA);
18
@ISA = qw(ProjectCreator);
19
@ISA = qw(XMLProjectBase ProjectCreator);
19
 
20
 
20
# ************************************************************
21
# ************************************************************
21
# Subroutine Section
22
# Subroutine Section
22
# ************************************************************
23
# ************************************************************
23
 
24
 
24
sub project_file_extension {
25
sub project_file_extension {
25
  #my($self) = shift;
26
  #my($self) = shift;
26
  return '.vpj';
27
  return '.vpj';
27
}
28
}
28
 
29
 
29
 
30
 
30
sub get_dll_exe_template_input_file {
31
sub get_dll_exe_template_input_file {
31
  #my($self) = shift;
32
  #my($self) = shift;
32
  return 'sleexe';
33
  return 'sleexe';
33
}
34
}
34
 
35
 
35
 
36
 
36
sub get_dll_template_input_file {
37
sub get_dll_template_input_file {
37
  #my($self) = shift;
38
  #my($self) = shift;
38
  return 'sledll';
39
  return 'sledll';
39
}
40
}
40
 
41
 
41
 
42
 
42
1;
43
1;
43
 
44