| 138 | } |
| 139 | |
| 140 | uint32_t GridVolume::loadGridSequence(GridSlot slot, const std::vector<std::filesystem::path>& paths, const std::string& gridname, bool keepEmpty) |
| 141 | { |
| 142 | GridVolume::GridSequence grids = GridVolume::createGridSequence(mpDevice, paths, gridname, keepEmpty); |
| 143 | setGridSequence(slot, grids); |
| 144 | return (uint32_t)grids.size(); |
| 145 | } |
| 146 | |
| 147 | uint32_t GridVolume::loadGridSequence(GridSlot slot, const std::filesystem::path& path, const std::string& gridname, bool keepEmpty) |
| 148 | { |
no test coverage detected