summaryrefslogtreecommitdiff
path: root/ACE/MPC/modules/Depgen/ObjectGenerator.pm
blob: 1935a5f3b42f76be4e5a3bf962de8c341540ab22 (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
package ObjectGenerator;

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

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

use strict;

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

sub new {
  return bless {}, $_[0];
}


sub process {
  #my($self, $file) = @_;
  return [];
}


1;