| 185 | } |
| 186 | |
| 187 | const char* PropertyContainer::getPropertyName(const Property* prop)const |
| 188 | { |
| 189 | auto res = dynamicProps.getPropertyName(prop); |
| 190 | if(!res) |
| 191 | res = getPropertyData().getName(this,prop); |
| 192 | return res; |
| 193 | } |
| 194 | |
| 195 | const PropertyData * PropertyContainer::getPropertyDataPtr(){return &propertyData;} |
| 196 | const PropertyData & PropertyContainer::getPropertyData() const{return propertyData;} |
nothing calls this directly
no test coverage detected