blob: 7b768863a22947fb68547552b673d7eedec5d058 (
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 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;
|