summaryrefslogtreecommitdiffstats
path: root/src/libs/client/ThreadedSigClientInterface.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-08-19 01:04:54 +0000
committerDavid Robillard <d@drobilla.net>2008-08-19 01:04:54 +0000
commita7e39b85d7c35ec44c613e593c57ff27de0d06bc (patch)
tree2a83f1264721bd5c7a06ad4beaa5d1f28f8bb0d6 /src/libs/client/ThreadedSigClientInterface.hpp
parent5609c1ce452f8122b5ed12144dd4c1941bd07bc2 (diff)
downloadingen-a7e39b85d7c35ec44c613e593c57ff27de0d06bc.tar.gz
ingen-a7e39b85d7c35ec44c613e593c57ff27de0d06bc.tar.bz2
ingen-a7e39b85d7c35ec44c613e593c57ff27de0d06bc.zip
Remove more API/code: num_plugins (unused legacy of the really crap OSC days).
git-svn-id: http://svn.drobilla.net/lad/ingen@1442 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/client/ThreadedSigClientInterface.hpp')
-rw-r--r--src/libs/client/ThreadedSigClientInterface.hpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libs/client/ThreadedSigClientInterface.hpp b/src/libs/client/ThreadedSigClientInterface.hpp
index fb6eb447..7cbb2bfe 100644
--- a/src/libs/client/ThreadedSigClientInterface.hpp
+++ b/src/libs/client/ThreadedSigClientInterface.hpp
@@ -80,8 +80,6 @@ public:
void transfer_begin() {}
void transfer_end() {}
- void num_plugins(uint32_t num) { _num_plugins = num; }
-
void response_ok(int32_t id)
{ push_sig(sigc::bind(response_ok_slot, id)); }
@@ -146,11 +144,9 @@ private:
void push_sig(Closure ev);
Raul::SRSWQueue<Closure> _sigs;
- uint32_t _num_plugins;
sigc::slot<void> bundle_begin_slot;
sigc::slot<void> bundle_end_slot;
- sigc::slot<void, uint32_t> num_plugins_slot;
sigc::slot<void, int32_t> response_ok_slot;
sigc::slot<void, int32_t, string> response_error_slot;
sigc::slot<void, string> error_slot;