diff options
author | David Robillard <d@drobilla.net> | 2008-08-16 22:45:35 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-08-16 22:45:35 +0000 |
commit | e9ea28e1efb241619606b937ecd2e97f7e23d897 (patch) | |
tree | 88ead187b63945d61837d075e10be9b105b870cd /src/common/interface/ClientInterface.hpp | |
parent | 491762bb487e1007f11cdc4dc7c01b03e3bd0d9d (diff) | |
download | ingen-e9ea28e1efb241619606b937ecd2e97f7e23d897.tar.gz ingen-e9ea28e1efb241619606b937ecd2e97f7e23d897.tar.bz2 ingen-e9ea28e1efb241619606b937ecd2e97f7e23d897.zip |
Begin factoring out common elements of EngineInterface and ClientInterface.
git-svn-id: http://svn.drobilla.net/lad/ingen@1406 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/common/interface/ClientInterface.hpp')
-rw-r--r-- | src/common/interface/ClientInterface.hpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/common/interface/ClientInterface.hpp b/src/common/interface/ClientInterface.hpp index 931e267b..9b0cbffb 100644 --- a/src/common/interface/ClientInterface.hpp +++ b/src/common/interface/ClientInterface.hpp @@ -30,7 +30,6 @@ class EngineInterface; /** The (only) interface the engine uses to communicate with clients. - * * Purely virtual (except for the destructor). * * \ingroup interface @@ -106,11 +105,11 @@ public: virtual void object_destroyed(const std::string& path) = 0; - virtual void connection(const std::string& src_port_path, - const std::string& dst_port_path) = 0; + virtual void connect(const std::string& src_port_path, + const std::string& dst_port_path) = 0; - virtual void disconnection(const std::string& src_port_path, - const std::string& dst_port_path) = 0; + virtual void disconnect(const std::string& src_port_path, + const std::string& dst_port_path) = 0; virtual void variable_change(const std::string& subject_path, const std::string& predicate, |