diff options
Diffstat (limited to 'ingen/Tee.hpp')
-rw-r--r-- | ingen/Tee.hpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ingen/Tee.hpp b/ingen/Tee.hpp index 1577f6dd..2cbd84d6 100644 --- a/ingen/Tee.hpp +++ b/ingen/Tee.hpp @@ -63,15 +63,15 @@ public: void bundle_begin() { BROADCAST(bundle_begin); } void bundle_end() { BROADCAST(bundle_end); } - void put(const Raul::URI& uri, - const Resource::Properties& properties, - Resource::Graph ctx=Resource::Graph::DEFAULT) { + void put(const Raul::URI& uri, + const Properties& properties, + Resource::Graph ctx = Resource::Graph::DEFAULT) { BROADCAST(put, uri, properties); } - void delta(const Raul::URI& uri, - const Resource::Properties& remove, - const Resource::Properties& add) { + void delta(const Raul::URI& uri, + const Properties& remove, + const Properties& add) { BROADCAST(delta, uri, remove, add); } |