summaryrefslogtreecommitdiff
path: root/ACE/MPC/modules/SLEProjectCreator.pm
blob: 2a1508beb29a14f008e4fa2ae29a0635e8dd052f (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
package SLEProjectCreator;

# ************************************************************
# Description   : The SLE Project Creator
# Author        : Johnny Willemsen
# Create Date   : 3/23/2003
# ************************************************************

# ************************************************************
# Pragmas
# ************************************************************

use strict;

use ProjectCreator;
use XMLProjectBase;

use vars qw(@ISA);
@ISA = qw(XMLProjectBase ProjectCreator);

# ************************************************************
# Subroutine Section
# ************************************************************

sub project_file_extension {
  #my $self = shift;
  return '.vpj';
}


sub get_dll_exe_template_input_file {
  #my $self = shift;
  return 'sleexe';
}


sub get_dll_template_input_file {
  #my $self = shift;
  return 'sledll';
}


1;