summaryrefslogtreecommitdiff
path: root/examples/APG/Streams/RecordingDeviceFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/APG/Streams/RecordingDeviceFactory.h')
-rw-r--r--examples/APG/Streams/RecordingDeviceFactory.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/examples/APG/Streams/RecordingDeviceFactory.h b/examples/APG/Streams/RecordingDeviceFactory.h
deleted file mode 100644
index 13485b20947..00000000000
--- a/examples/APG/Streams/RecordingDeviceFactory.h
+++ /dev/null
@@ -1,22 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-#ifndef RECORDING_DEVICE_FACTORY_H
-#define RECORDING_DEVICE_FACTORY_H
-
-class RecordingDevice;
-
-/*
- * A factory class that creates an appropriate RecordingDevice
- * derivative based on command-line parameters.
- */
-class RecordingDeviceFactory
-{
-public:
-
- // Instantiate the appropriate RecordingDevice implementation
- static RecordingDevice *instantiate (int argc, ACE_TCHAR *argv[]);
-};
-
-#endif /* RECORDING_DEVICE_FACTORY_H */
-