| 102 | } |
| 103 | |
| 104 | wf::custom_data_t*wf::object_base_t::_fetch_data(std::string name) |
| 105 | { |
| 106 | auto it = obase_priv->data.find(name); |
| 107 | if (it == obase_priv->data.end()) |
| 108 | { |
| 109 | return nullptr; |
| 110 | } |
| 111 | |
| 112 | return it->second.get(); |
| 113 | } |
| 114 | |
| 115 | wf::custom_data_t*wf::object_base_t::_fetch_erase(std::string name) |
| 116 | { |