summaryrefslogtreecommitdiffstats
path: root/ingen/Interface.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-10 03:23:11 +0000
committerDavid Robillard <d@drobilla.net>2012-05-10 03:23:11 +0000
commitda468f24388d7f0f574c6e4dd4022e05d47a9db2 (patch)
tree32e90d5fa55a35caef43cb69592286fc31c5d4f4 /ingen/Interface.hpp
parent281bbcc6a7208c28283bc9bdd521c5d6cc48a60f (diff)
downloadingen-da468f24388d7f0f574c6e4dd4022e05d47a9db2.tar.gz
ingen-da468f24388d7f0f574c6e4dd4022e05d47a9db2.tar.bz2
ingen-da468f24388d7f0f574c6e4dd4022e05d47a9db2.zip
Use SharedPtr references to Interfaces to keep things sane.
Fix double register when using GUI with a remote engine. Avoid signal when writing to dead socket by using send with MSG_NOSIGNAL. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4336 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen/Interface.hpp')
-rw-r--r--ingen/Interface.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/ingen/Interface.hpp b/ingen/Interface.hpp
index 0a3411a1..96a438a9 100644
--- a/ingen/Interface.hpp
+++ b/ingen/Interface.hpp
@@ -19,6 +19,7 @@
#include "ingen/Resource.hpp"
#include "ingen/Status.hpp"
+#include "raul/SharedPtr.hpp"
namespace Raul {
class Atom;
@@ -40,6 +41,12 @@ public:
virtual Raul::URI uri() const = 0;
+ virtual SharedPtr<Interface> respondee() const {
+ return SharedPtr<Interface>();
+ }
+
+ virtual void set_respondee(SharedPtr<Interface> respondee) {}
+
/** Begin an atomic bundle */
virtual void bundle_begin() = 0;