ShiLiang Zhang
2023-12-29 a2c46d612329f5cbf513d5f14e6938bb1ef56b06
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_