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

# ************************************************************
# Description   : Base class for all Object Generators.
# Author        : Chad Elliott
# Create Date   : 5/23/2003
# ************************************************************

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

use strict;

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

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


sub process {
  #my($self) = shift;
  #my($file) = shift;
  return ();
}


1;