summaryrefslogtreecommitdiff
path: root/ACE/MPC/modules/WinWorkspaceBase.pm
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/MPC/modules/WinWorkspaceBase.pm')
-rw-r--r--ACE/MPC/modules/WinWorkspaceBase.pm35
1 files changed, 35 insertions, 0 deletions
diff --git a/ACE/MPC/modules/WinWorkspaceBase.pm b/ACE/MPC/modules/WinWorkspaceBase.pm
new file mode 100644
index 00000000000..6ffd56efb40
--- /dev/null
+++ b/ACE/MPC/modules/WinWorkspaceBase.pm
@@ -0,0 +1,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;