summaryrefslogtreecommitdiff
path: root/bin/DependencyGenerator/DependencyWriter.pm
blob: d5ff29296188846b2cac30bc06658b9d809f1cf4 (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
package DependencyWriter;

# ************************************************************
# Description   : Base class for all Dependency Writers.
# Author        : Chad Elliott
# Create Date   : 2/10/2002
# ************************************************************

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

use strict;

# ************************************************************
# Subroutine Section
# ************************************************************

sub new {
  my($class) = shift;
  return bless {
               }, $class;
}


sub process {
  #my($self)    = shift;
  #my($objects) = shift;
  #my($files)   = shift;
  return '';
}


1;