| 9 | namespace op { |
| 10 | |
| 11 | class LoadNumpy : public KeyTransformOp { |
| 12 | public: |
| 13 | LoadNumpy( |
| 14 | const std::string& ikey, |
| 15 | const std::string& prefix = "", |
| 16 | bool from_memory = false, |
| 17 | const std::string& okey = ""); |
| 18 | |
| 19 | virtual std::shared_ptr<Array> apply_key( |
| 20 | const std::shared_ptr<const Array>& src) const override; |
| 21 | |
| 22 | private: |
| 23 | std::string prefix_; |
| 24 | bool from_memory_; |
| 25 | }; |
| 26 | |
| 27 | } // namespace op |
| 28 | } // namespace data |
nothing calls this directly
no outgoing calls
no test coverage detected