| 34 | VariantData* getElement(size_t index, const ResourceManager* resources) const; |
| 35 | |
| 36 | static VariantData* getElement(const ArrayData* array, size_t index, |
| 37 | const ResourceManager* resources) { |
| 38 | if (!array) |
| 39 | return nullptr; |
| 40 | return array->getElement(index, resources); |
| 41 | } |
| 42 | |
| 43 | void removeElement(size_t index, ResourceManager* resources); |
| 44 |
no test coverage detected