diff options
Diffstat (limited to 'ingen/EngineBase.hpp')
-rw-r--r-- | ingen/EngineBase.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ingen/EngineBase.hpp b/ingen/EngineBase.hpp index df65c5d0..51af6de5 100644 --- a/ingen/EngineBase.hpp +++ b/ingen/EngineBase.hpp @@ -20,6 +20,7 @@ #include <stdint.h> #include "raul/URI.hpp" +#include "raul/SharedPtr.hpp" namespace Ingen { @@ -74,8 +75,8 @@ public: /** Register a client to receive updates about engine changes. */ - virtual void register_client(const Raul::URI& uri, - Interface* client) = 0; + virtual void register_client(const Raul::URI& uri, + SharedPtr<Interface> client) = 0; /** Unregister a client. |