summaryrefslogtreecommitdiff
path: root/lib/gras_impl
diff options
context:
space:
mode:
authorJosh Blum2013-04-06 18:00:21 -0700
committerJosh Blum2013-04-06 18:00:21 -0700
commit74a8855cccdd81c673d0ae3d94a74f94bbbe9bfd (patch)
treed53c085689fffecae307108aef6d833e67cf41b9 /lib/gras_impl
parent427f6b15cd03d8a0d3881cbe65fed38cc2e5901c (diff)
downloadsandhi-74a8855cccdd81c673d0ae3d94a74f94bbbe9bfd.tar.gz
sandhi-74a8855cccdd81c673d0ae3d94a74f94bbbe9bfd.tar.bz2
sandhi-74a8855cccdd81c673d0ae3d94a74f94bbbe9bfd.zip
gras: split register property into two calls
Diffstat (limited to 'lib/gras_impl')
-rw-r--r--lib/gras_impl/block_actor.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/gras_impl/block_actor.hpp b/lib/gras_impl/block_actor.hpp
index e620d77..8a2d5ae 100644
--- a/lib/gras_impl/block_actor.hpp
+++ b/lib/gras_impl/block_actor.hpp
@@ -203,7 +203,8 @@ struct BlockActor : Apology::Worker
std::vector<std::vector<OutputHintMessage> > output_allocation_hints;
//property stuff
- std::map<std::string, PropertyRegistrySptr> prop_registry;
+ std::map<std::string, PropertyRegistrySptr> getter_registry;
+ std::map<std::string, PropertyRegistrySptr> setter_registry;
BlockStats stats;
};