1 #ifndef ZEP_AUDIO_FACTORY_INTERFACE_HPP_     2 #define ZEP_AUDIO_FACTORY_INTERFACE_HPP_     7 #include "PcmSinkInterface.hpp"     8 #include "PcmSourceInterface.hpp"    28       const std::string& stream_name) = 0;
    36       const std::string& stream_name) = 0;
    44 #endif  // ZEP_AUDIO_FACTORY_INTERFACE_HPP_ ZEP SDK用名前空間 
Definition: FactoryInterface.hpp:10
virtual std::unique_ptr< PcmSourceInterface > CreatePcmSource(const std::string &stream_name)=0
PcmSourceのインスタンスを生成する。 
virtual std::unique_ptr< PcmSinkInterface > CreatePcmSink(const std::string &stream_name)=0
PcmSinkのインスタンスを生成する。 
音声関連ストリームのファクトリ機能インターフェース 
Definition: FactoryInterface.hpp:20