mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2026-05-02 11:29:49 +01:00
23 lines
385 B
C++
23 lines
385 B
C++
#ifndef INTERNALAUDIOSINK_H
|
|
#define INTERNALAUDIOSINK_H
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/unistd.h>
|
|
#include <iostream>
|
|
#include <vector>
|
|
#include "BufferedAudioSink.h"
|
|
#include "esp_err.h"
|
|
#include "esp_log.h"
|
|
|
|
class InternalAudioSink : public BufferedAudioSink {
|
|
public:
|
|
InternalAudioSink();
|
|
~InternalAudioSink();
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|