2 #ifndef RECORDING_DEVICE_FACTORY_H
3 #define RECORDING_DEVICE_FACTORY_H
8 * A factory class that creates an appropriate RecordingDevice
9 * derivative based on command-line parameters.
11 class RecordingDeviceFactory
14 // Instantiate the appropriate RecordingDevice implementation
15 static RecordingDevice
*instantiate (int argc
, ACE_TCHAR
*argv
[]);
18 #endif /* RECORDING_DEVICE_FACTORY_H */