summaryrefslogtreecommitdiff
path: root/modules/WinWorkspaceBase.pm
blob: 9189d9c7b00317725a16bb58a4e911f33b02fbd4 (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
package WinWorkspaceBase;

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

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

use strict;
use WinPropertyBase;

use vars qw(@ISA);
@ISA = qw(WinPropertyBase);

# ************************************************************
# 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;