| 275 | } |
| 276 | |
| 277 | std::string_view SkinExportSerializer::convertEditorToExportStateName(std::string_view _value) |
| 278 | { |
| 279 | MyGUI::MapString::const_iterator result = mEditorToExportNames.find(_value); |
| 280 | if (result != mEditorToExportNames.end()) |
| 281 | return result->second; |
| 282 | return _value; |
| 283 | } |
| 284 | |
| 285 | std::string_view SkinExportSerializer::convertExportToEditorStateName(std::string_view _value) |
| 286 | { |