1
0
Fork 0

Callbacks redesigning

This commit is contained in:
Kaveh Vahedipour 2016-04-06 17:30:40 +02:00
parent 407e06be32
commit edec7047b9
2 changed files with 5 additions and 5 deletions

View File

@ -422,12 +422,12 @@ template<> bool Node::handle<SHIFT> (VPackSlice const& slice) {
return true;
}
template<> bool Node::handle<OBSERVE> () {
template<> bool Node::handle<OBSERVE> (VPackSlice const& slice) {
return true;
}
template<> bool Node::handle<UNOBSERVE> () {
template<> bool Node::handle<UNOBSERVE> (VPackSlice const& slice) {
return true;
}
}}

View File

@ -237,7 +237,7 @@ private:
/// @brief My own agent
Agent* _agent;
std::multimap
std::multimap <std::string,std::string> _observers;
};