mumsi/ICommunicator.hpp
2015-11-05 01:15:20 +01:00

18 lines
378 B
C++

#pragma once
#include <functional>
#include <stdint.h>
class ICommunicator {
public:
/**
* Send samples through the Communicator.
*/
virtual void sendPcmSamples(int16_t *samples, unsigned int length) = 0;
/**
* This callback is called when Communicator has received samples.
*/
std::function<void(int16_t *, int)> onIncomingPcmSamples;
};