summaryrefslogtreecommitdiff
path: root/ACE/MPC/modules/WinWorkspaceBase.pm
blob: 6ffd56efb401af1addf5fc33b5731abf8f6588a0 (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
package WinWorkspaceBase;

# ************************************************************
# Description   : A Windows base module for Workspace Creators
# Author        : Chad Elliott
# Create Date   : 2/26/2007
# ************************************************************

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

use strict;

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

sub crlf {
  return $_[0]->windows_crlf();
}


sub convert_slashes {
  #my $self = shift;
  return 1;
}

sub case_insensitive {
  #my $self = shift;
  return 1;
}


1;