summaryrefslogtreecommitdiffstats
path: root/src/JackDriver.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-25 23:48:14 +0000
committerDavid Robillard <d@drobilla.net>2011-11-25 23:48:14 +0000
commitd660a764ac2237f5e2fe5190e90b31209b1d70da (patch)
tree85c5e1d96d422a990d81ff35a19b64276a1ef8b4 /src/JackDriver.hpp
parente0d452db27924fbef0d6d02000bb893c67879763 (diff)
downloadpatchage-d660a764ac2237f5e2fe5190e90b31209b1d70da.tar.gz
patchage-d660a764ac2237f5e2fe5190e90b31209b1d70da.tar.bz2
patchage-d660a764ac2237f5e2fe5190e90b31209b1d70da.zip
Remove Raul dependency.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@3633 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/JackDriver.hpp')
-rw-r--r--src/JackDriver.hpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/JackDriver.hpp b/src/JackDriver.hpp
index 4622ad1..df1a33f 100644
--- a/src/JackDriver.hpp
+++ b/src/JackDriver.hpp
@@ -23,9 +23,8 @@
#include <glibmm/thread.h>
-#include "raul/SRSWQueue.hpp"
-
#include "Driver.hpp"
+#include "Queue.hpp"
class Patchage;
class PatchageEvent;
@@ -84,8 +83,6 @@ private:
jack_port_t* port,
PortID id);
- static void error_cb(const char* msg);
-
void shutdown();
static void jack_client_registration_cb(const char* name, int registered, void* me);
@@ -97,7 +94,7 @@ private:
Patchage* _app;
jack_client_t* _client;
- Raul::SRSWQueue<PatchageEvent> _events;
+ Queue<PatchageEvent> _events;
Glib::Mutex _shutdown_mutex;