summaryrefslogtreecommitdiffstats
path: root/src/libs/client/ThreadedSigClientInterface.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-01-22 05:00:29 +0000
committerDavid Robillard <d@drobilla.net>2007-01-22 05:00:29 +0000
commitea3586e44a1621f97298e667a79f4c4f75f902ba (patch)
tree690673160bab500b197b0be8551daf55e927104b /src/libs/client/ThreadedSigClientInterface.h
parent6fc1fa0d3bec4b82cb3af4c4e887241087899e7e (diff)
downloadingen-ea3586e44a1621f97298e667a79f4c4f75f902ba.tar.gz
ingen-ea3586e44a1621f97298e667a79f4c4f75f902ba.tar.bz2
ingen-ea3586e44a1621f97298e667a79f4c4f75f902ba.zip
Created Raul namespace.
git-svn-id: http://svn.drobilla.net/lad/ingen@265 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/client/ThreadedSigClientInterface.h')
-rw-r--r--src/libs/client/ThreadedSigClientInterface.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/client/ThreadedSigClientInterface.h b/src/libs/client/ThreadedSigClientInterface.h
index 0a2b8652..53454250 100644
--- a/src/libs/client/ThreadedSigClientInterface.h
+++ b/src/libs/client/ThreadedSigClientInterface.h
@@ -118,7 +118,7 @@ public:
void disconnection(string src_port_path, string dst_port_path)
{ push_sig(sigc::bind(disconnection_slot, src_port_path, dst_port_path)); }
- void metadata_update(string path, string key, Atom value)
+ void metadata_update(string path, string key, Raul::Atom value)
{ push_sig(sigc::bind(metadata_update_slot, path, key, value)); }
void control_change(string port_path, float value)
@@ -138,8 +138,8 @@ private:
bool _enabled;
- SRSWQueue<Closure> _sigs;
- uint32_t _num_plugins;
+ Raul::SRSWQueue<Closure> _sigs;
+ uint32_t _num_plugins;
sigc::slot<void> bundle_begin_slot;
sigc::slot<void> bundle_end_slot;
@@ -157,7 +157,7 @@ private:
sigc::slot<void, string> object_destroyed_slot;
sigc::slot<void, string, string> object_renamed_slot;
sigc::slot<void, string, string> disconnection_slot;
- sigc::slot<void, string, string, Atom> metadata_update_slot;
+ sigc::slot<void, string, string, Raul::Atom> metadata_update_slot;
sigc::slot<void, string, float> control_change_slot;
sigc::slot<void, string, uint32_t, uint32_t, string> program_add_slot;
sigc::slot<void, string, uint32_t, uint32_t> program_remove_slot;