Merge pull request #224 from DOCGroup/jwillemsen-patch-1
[MPC.git] / modules / Depgen / ObjectGenerator.pm
blob1935a5f3b42f76be4e5a3bf962de8c341540ab22
1 package ObjectGenerator;
3 # ************************************************************
4 # Description : Base class for all Object Generators.
5 # Author : Chad Elliott
6 # Create Date : 5/23/2003
7 # ************************************************************
9 # ************************************************************
10 # Pragmas
11 # ************************************************************
13 use strict;
15 # ************************************************************
16 # Subroutine Section
17 # ************************************************************
19 sub new {
20 return bless {}, $_[0];
24 sub process {
25 #my($self, $file) = @_;
26 return [];