📄 recordingdevicefactory.h
字号:
/* -*- C++ -*- */
// RecordingDeviceFactory.h,v 1.1 2004/01/01 21:01:00 shuston Exp
#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 */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -