summaryrefslogtreecommitdiff
path: root/ACE/bin/ChangeLogEditor/FileLocator.pm
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/bin/ChangeLogEditor/FileLocator.pm')
-rw-r--r--ACE/bin/ChangeLogEditor/FileLocator.pm39
1 files changed, 39 insertions, 0 deletions
diff --git a/ACE/bin/ChangeLogEditor/FileLocator.pm b/ACE/bin/ChangeLogEditor/FileLocator.pm
new file mode 100644
index 00000000000..7b768863a22
--- /dev/null
+++ b/ACE/bin/ChangeLogEditor/FileLocator.pm
@@ -0,0 +1,39 @@
+package FileLocator;
+
+# ************************************************************
+# Description : Base class for file locators.
+# Author : Chad Elliott
+# Create Date : 6/18/2002
+# ************************************************************
+
+# ************************************************************
+# Pragmas
+# ************************************************************
+
+use strict;
+use FileHandle;
+
+# ************************************************************
+# Subroutine Section
+# ************************************************************
+
+sub new {
+ my($class) = shift;
+ my($self) = bless {
+ }, $class;
+ return $self;
+}
+
+
+sub locate {
+ my($self) = shift;
+ my(@dirs) = @_;
+ my(@modified) = ();
+ my(@removed) = ();
+ my(@conflicts) = ();
+ my(@unknown) = ();
+ return \@modified, \@removed, \@conflicts, \@unknown;
+}
+
+
+1;