| 8 | namespace data { |
| 9 | namespace op { |
| 10 | LoadFile::LoadFile( |
| 11 | const std::string& ikey, |
| 12 | const std::filesystem::path& prefix, |
| 13 | const std::string& okey) |
| 14 | : KeyTransformOp(ikey, okey), prefix_(prefix) {} |
| 15 | |
| 16 | std::shared_ptr<Array> LoadFile::apply_key( |
| 17 | const std::shared_ptr<const Array>& src) const { |
nothing calls this directly
no outgoing calls
no test coverage detected