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