| 135 | } |
| 136 | |
| 137 | std::vector<Meta::FileItem> Meta::SearchImportPaths(const FilesystemView& parent_fs, std::string_view child_path) const { |
| 138 | if (!Empty()) { |
| 139 | int pivotMapId = GetPivotMap(); |
| 140 | auto parent = GetParentGame(); |
| 141 | return BuildImportCandidateList(parent_fs, child_path, parent, pivotMapId); |
| 142 | } |
| 143 | |
| 144 | return std::vector<Meta::FileItem>(); |
| 145 | } |
| 146 | |
| 147 | |
| 148 | std::vector<Meta::FileItem> Meta::BuildImportCandidateList(const FilesystemView& parent_fs, std::string_view child_path, std::string_view parent_game_name, int pivot_map_id) const { |
no outgoing calls
no test coverage detected