summaryrefslogtreecommitdiff
path: root/modules/WinProjectBase.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2005-01-05 13:09:13 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2005-01-05 13:09:13 +0000
commita628132844b2fc15f2cd3bce0a2e70b7e5cd9559 (patch)
tree9b367d43457230d0099bb8ead6f01a2071877631 /modules/WinProjectBase.pm
parentbfa783a8818ba51b76c0ba0fec80a84cd1843f72 (diff)
downloadMPC-a628132844b2fc15f2cd3bce0a2e70b7e5cd9559.tar.gz
ChangeLogTag: Wed Jan 5 07:08:57 2005 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/WinProjectBase.pm')
-rw-r--r--modules/WinProjectBase.pm33
1 files changed, 33 insertions, 0 deletions
diff --git a/modules/WinProjectBase.pm b/modules/WinProjectBase.pm
new file mode 100644
index 00000000..6f0db62a
--- /dev/null
+++ b/modules/WinProjectBase.pm
@@ -0,0 +1,33 @@
+package WinProjectBase;
+
+# ************************************************************
+# Description : A Windows base module for Project Creators
+# Author : Chad Elliott
+# Create Date : 1/4/2005
+# ************************************************************
+
+# ************************************************************
+# Pragmas
+# ************************************************************
+
+use strict;
+
+# ************************************************************
+# Subroutine Section
+# ************************************************************
+
+sub crlf {
+ my($self) = shift;
+ return $self->windows_crlf();
+}
+
+
+sub file_sorter {
+ my($self) = shift;
+ my($left) = shift;
+ my($right) = shift;
+ return lc($left) cmp lc($right);
+}
+
+
+1;