summaryrefslogtreecommitdiff
path: root/bin/DependencyGenerator/ObjectGenerator.pm
diff options
context:
space:
mode:
Diffstat (limited to 'bin/DependencyGenerator/ObjectGenerator.pm')
-rw-r--r--bin/DependencyGenerator/ObjectGenerator.pm32
1 files changed, 0 insertions, 32 deletions
diff --git a/bin/DependencyGenerator/ObjectGenerator.pm b/bin/DependencyGenerator/ObjectGenerator.pm
deleted file mode 100644
index d7e92070642..00000000000
--- a/bin/DependencyGenerator/ObjectGenerator.pm
+++ /dev/null
@@ -1,32 +0,0 @@
-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) = shift;
- #my($file) = shift;
- return [];
-}
-
-
-1;