| 35 | } |
| 36 | |
| 37 | std::string_view ResourcePointerContext::getPointer(std::string_view _type) |
| 38 | { |
| 39 | MyGUI::MapString::iterator item = mPointers.find(_type); |
| 40 | if (item != mPointers.end()) |
| 41 | return item->second; |
| 42 | return {}; |
| 43 | } |
| 44 | |
| 45 | bool ResourcePointerContext::isHighLevel() const |
| 46 | { |
no test coverage detected