ShiLiang Zhang
2023-10-07 30664c6ce7d5492d55544453f79c219d551f125b
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_