| 72 | } |
| 73 | |
| 74 | [[nodiscard]] Any const |
| 75 | Event::GetProperty(std::string const& propName) const |
| 76 | { |
| 77 | auto itr = properties.find(propName); |
| 78 | if (itr == properties.end()) |
| 79 | { |
| 80 | return Any(); |
| 81 | } |
| 82 | |
| 83 | return itr->second; |
| 84 | } |
| 85 | |
| 86 | [[nodiscard]] AnyMap const |
| 87 | Event::GetProperties() const |