Xingchen Song(宋星辰)
2024-06-07 93a02feda1848531a48a1794a8de12a962c84a8e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * Copyright FunASR (https://github.com/alibaba-damo-academy/FunASR). All Rights
 * Reserved. MIT License  (https://opensource.org/licenses/MIT)
 */
 
#ifndef WEBSOCKET_MICROPHONE_H_
#define WEBSOCKET_MICROPHONE_H_
#include <glog/logging.h>
 
class Microphone {
 public:
  Microphone();
  ~Microphone();
};
 
#endif  // WEBSOCKET_MICROPHONE_H_