| 140 | } |
| 141 | |
| 142 | void Property::syncType(unsigned type) |
| 143 | { |
| 144 | for (const auto& [propertyStatus, propertyType] : mapProps) { |
| 145 | if (type & propertyType) { |
| 146 | StatusBits.set((size_t)propertyStatus); |
| 147 | } |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | const char* Property::getGroup() const |
| 152 | { |
no test coverage detected