summaryrefslogtreecommitdiffstats
path: root/src/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/client')
-rw-r--r--src/client/ClientStore.hpp3
-rw-r--r--src/client/ObjectModel.hpp5
2 files changed, 7 insertions, 1 deletions
diff --git a/src/client/ClientStore.hpp b/src/client/ClientStore.hpp
index 1d5c4589..cd5ffb06 100644
--- a/src/client/ClientStore.hpp
+++ b/src/client/ClientStore.hpp
@@ -29,7 +29,8 @@
#include "raul/TableImpl.hpp"
#include "interface/EngineInterface.hpp"
#include "shared/Store.hpp"
-using std::string; using std::list;
+
+using namespace std;
using Ingen::Shared::EngineInterface;
using Raul::Path;
using Raul::Atom;
diff --git a/src/client/ObjectModel.hpp b/src/client/ObjectModel.hpp
index 843b14de..d4c74ee0 100644
--- a/src/client/ObjectModel.hpp
+++ b/src/client/ObjectModel.hpp
@@ -64,6 +64,11 @@ public:
const Atom& get_variable(const string& key) const;
Atom& get_variable( string& key);
+ virtual void set_property(const string& key, const Atom& value) {
+ ResourceImpl::set_property(key, value);
+ signal_property.emit(key, value);
+ }
+
virtual void set_variable(const string& key, const Atom& value)
{ _variables[key] = value; signal_variable.emit(key, value); }