pr_rec_aw.h

来自「ears-0.32, linux下有用的语音信号处理工具包」· C头文件 代码 · 共 24 行

H
24
字号
#ifndef RecordingAllWordsProtocol_h#define RecordingAllWordsProtocol_h#pragma interface#include "protocol.h"#include <string>class RecordingAllWordsProtocol : public Protocol// A recording session that tries to get patterns for all words needed.  {public:  RecordingAllWordsProtocol () {}  virtual ~RecordingAllWordsProtocol () {}  virtual void start();    bool stopped() { return stopped_; }  private:  bool stopped_;  const string getnextfilename (const string&);};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?