diff options
author | David Robillard <d@drobilla.net> | 2008-08-19 01:54:28 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-08-19 01:54:28 +0000 |
commit | 353944ee388081b5fa280847fb202a4f27c81735 (patch) | |
tree | 3782394df70361de0c52904f9fb707f1b543b478 /src/common | |
parent | 1b8f06504a155e75a9419dfa5c9bf9df1866e01d (diff) | |
download | ingen-353944ee388081b5fa280847fb202a4f27c81735.tar.gz ingen-353944ee388081b5fa280847fb202a4f27c81735.tar.bz2 ingen-353944ee388081b5fa280847fb202a4f27c81735.zip |
Remove redundant prototypes.
git-svn-id: http://svn.drobilla.net/lad/ingen@1444 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/interface/ClientInterface.hpp | 7 | ||||
-rw-r--r-- | src/common/interface/CommonInterface.hpp | 8 |
2 files changed, 4 insertions, 11 deletions
diff --git a/src/common/interface/ClientInterface.hpp b/src/common/interface/ClientInterface.hpp index d77391f8..e7ddfeaf 100644 --- a/src/common/interface/ClientInterface.hpp +++ b/src/common/interface/ClientInterface.hpp @@ -50,13 +50,6 @@ public: */ virtual void disable() = 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 diff --git a/src/common/interface/CommonInterface.hpp b/src/common/interface/CommonInterface.hpp index a0d52791..220b2391 100644 --- a/src/common/interface/CommonInterface.hpp +++ b/src/common/interface/CommonInterface.hpp @@ -38,11 +38,11 @@ class CommonInterface public: virtual ~CommonInterface() {} - // Bundles + /** Begin an atomic bundle */ virtual void bundle_begin() = 0; - virtual void bundle_end() = 0; - - // Object commands + + /** End (and send) an atomic bundle */ + virtual void bundle_end() = 0; virtual void new_patch(const std::string& path, uint32_t poly) = 0; |