view src/portaudio_20140130/bindings/cpp/include/portaudiocpp/InterfaceCallbackStream.hxx @ 78:7ea7031c0e5c pa_catalina

Apply patch from Tim Bunnell on PortAudio mailing list (2016-12-28, Mac 10.11 deprecation warning)
author Chris Cannam
date Wed, 30 Oct 2019 11:28:45 +0000
parents 7ddb4fc30dac
children
line wrap: on
line source
#ifndef INCLUDED_PORTAUDIO_INTERFACECALLBACKSTREAM_HXX
#define INCLUDED_PORTAUDIO_INTERFACECALLBACKSTREAM_HXX

// ---------------------------------------------------------------------------------------

#include "portaudio.h"

#include "portaudiocpp/CallbackStream.hxx"

// ---------------------------------------------------------------------------------------

// Forward declaration(s)
namespace portaudio
{
	class StreamParameters;
	class CallbackInterface;
}

// ---------------------------------------------------------------------------------------

// Declaration(s):
namespace portaudio
{


	//////
	/// @brief Callback stream using an instance of an object that's derived from the CallbackInterface 
	/// interface.
	//////
	class InterfaceCallbackStream : public CallbackStream
	{
	public:
		InterfaceCallbackStream();
		InterfaceCallbackStream(const StreamParameters &parameters, CallbackInterface &instance);
		~InterfaceCallbackStream();
		
		void open(const StreamParameters &parameters, CallbackInterface &instance);

	private:
		InterfaceCallbackStream(const InterfaceCallbackStream &); // non-copyable
		InterfaceCallbackStream &operator=(const InterfaceCallbackStream &); // non-copyable
	};


} // portaudio

// ---------------------------------------------------------------------------------------

#endif // INCLUDED_PORTAUDIO_INTERFACECALLBACKSTREAM_HXX