Mercurial > hg > sv-dependency-builds
view src/portaudio_20140130/bindings/cpp/include/portaudiocpp/InterfaceCallbackStream.hxx @ 83:ae30d91d2ffe
Replace these with versions built using an older toolset (so as to avoid ABI compatibilities when linking on Ubuntu 14.04 for packaging purposes)
author | Chris Cannam |
---|---|
date | Fri, 07 Feb 2020 11:51:13 +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 ¶meters, CallbackInterface &instance); ~InterfaceCallbackStream(); void open(const StreamParameters ¶meters, CallbackInterface &instance); private: InterfaceCallbackStream(const InterfaceCallbackStream &); // non-copyable InterfaceCallbackStream &operator=(const InterfaceCallbackStream &); // non-copyable }; } // portaudio // --------------------------------------------------------------------------------------- #endif // INCLUDED_PORTAUDIO_INTERFACECALLBACKSTREAM_HXX