summaryrefslogtreecommitdiff
path: root/bin/DependencyGenerator/DependencyWriterFactory.pm
diff options
context:
space:
mode:
Diffstat (limited to 'bin/DependencyGenerator/DependencyWriterFactory.pm')
-rw-r--r--bin/DependencyGenerator/DependencyWriterFactory.pm35
1 files changed, 0 insertions, 35 deletions
diff --git a/bin/DependencyGenerator/DependencyWriterFactory.pm b/bin/DependencyGenerator/DependencyWriterFactory.pm
deleted file mode 100644
index b95d1a1d81a..00000000000
--- a/bin/DependencyGenerator/DependencyWriterFactory.pm
+++ /dev/null
@@ -1,35 +0,0 @@
-package DependencyWriterFactory;
-
-# ************************************************************
-# Description : Create DependencyWriter objects.
-# Author : Chad Elliott
-# Create Date : 5/23/2003
-# ************************************************************
-
-# ************************************************************
-# Pragmas
-# ************************************************************
-
-use strict;
-
-use GNUDependencyWriter;
-use NMakeDependencyWriter;
-
-# ************************************************************
-# Subroutine Section
-# ************************************************************
-
-sub create {
- my($type) = shift;
-
- switch: {
- $type eq 'gnu' && do { return new GNUDependencyWriter(); };
- $type eq 'nmake' && do { return new NMakeDependencyWriter(); };
- print STDERR "WARNING: Invalid dependency writer type: $type\n";
- }
-
- return new DependencyWriter();
-}
-
-
-1;