diff options
Diffstat (limited to 'src/JackDriver.h')
-rw-r--r-- | src/JackDriver.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/JackDriver.h b/src/JackDriver.h index 816d7d5..0ee94ae 100644 --- a/src/JackDriver.h +++ b/src/JackDriver.h @@ -23,7 +23,6 @@ #include <boost/shared_ptr.hpp> #include <jack/jack.h> #include <jack/statistics.h> -#include <raul/SRSWQueue.h> #include <raul/Mutex.h> #include <raul/AtomicPtr.h> #include "Driver.h" @@ -53,8 +52,6 @@ public: bool is_attached() const { return (_client != NULL); } bool is_realtime() const { return _client && jack_is_realtime(_client); } - Raul::SRSWQueue<PatchageEvent>& events() { return _events; } - void refresh(); bool connect(boost::shared_ptr<PatchagePort> src, @@ -108,8 +105,6 @@ private: Patchage* _app; jack_client_t* _client; - Raul::SRSWQueue<PatchageEvent> _events; - Raul::Mutex _mutex; bool _is_activated; |