| 122 | } |
| 123 | |
| 124 | FileSystemDatasetFactory::FileSystemDatasetFactory( |
| 125 | std::vector<fs::FileInfo> files, std::shared_ptr<fs::FileSystem> filesystem, |
| 126 | std::shared_ptr<FileFormat> format, FileSystemFactoryOptions options) |
| 127 | : files_(std::move(files)), |
| 128 | fs_(std::move(filesystem)), |
| 129 | format_(std::move(format)), |
| 130 | options_(std::move(options)) {} |
| 131 | |
| 132 | Result<std::shared_ptr<DatasetFactory>> FileSystemDatasetFactory::Make( |
| 133 | std::shared_ptr<fs::FileSystem> filesystem, const std::vector<std::string>& paths, |
no outgoing calls