summaryrefslogtreecommitdiffstats
path: root/src/common/interface/ClientInterface.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-09-11 11:10:35 +0000
committerDavid Robillard <d@drobilla.net>2006-09-11 11:10:35 +0000
commitb15864870d34a1188eda93ad215734275037278e (patch)
tree224a1669a29091ea4198425d4a002e448cde8b30 /src/common/interface/ClientInterface.h
parent22bf43352ddfc48452d776f10ad4d12161255049 (diff)
downloadingen-b15864870d34a1188eda93ad215734275037278e.tar.gz
ingen-b15864870d34a1188eda93ad215734275037278e.tar.bz2
ingen-b15864870d34a1188eda93ad215734275037278e.zip
Switched homebrew CountedPtr to boost::shared_ptr.
Factories for patch windows, controller. Robustness updated in many places. Tons of cleanups, rewrites, bugfixes, etc. git-svn-id: http://svn.drobilla.net/lad/ingen@128 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/common/interface/ClientInterface.h')
-rw-r--r--src/common/interface/ClientInterface.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/common/interface/ClientInterface.h b/src/common/interface/ClientInterface.h
index 071b854e..3adc76f4 100644
--- a/src/common/interface/ClientInterface.h
+++ b/src/common/interface/ClientInterface.h
@@ -36,14 +36,14 @@ public:
virtual ~ClientInterface() {}
virtual void response(int32_t id, bool success, string msg) = 0;
-
+
/** Bundles are a group of messages that are guaranteed to be in an
* atomic unit with guaranteed order (eg a packet). For datagram
* protocols (like UDP) there is likely an upper limit on bundle size.
*/
virtual void bundle_begin() = 0;
virtual void bundle_end() = 0;
-
+
/** Transfers are 'weak' bundles. These are used to break a large group
* of similar/related messages into larger chunks (solely for communication
* efficiency). A bunch of messages in a transfer will arrive as 1 or more
@@ -51,11 +51,11 @@ public:
*/
virtual void transfer_begin() = 0;
virtual void transfer_end() = 0;
-
+
virtual void error(string msg) = 0;
virtual void num_plugins(uint32_t num_plugins) = 0;
-
+
virtual void new_plugin(string type,
string uri,
string name) = 0;
@@ -101,7 +101,7 @@ public:
uint32_t program,
string program_name) = 0;
- virtual void program_remove(string node_path,
+ virtual void program_remove(string node_path,
uint32_t bank,
uint32_t program) = 0;