| 490 | |
| 491 | template<ExternalStreamType E> |
| 492 | static void ExportExternalStream(py::module &m) |
| 493 | { |
| 494 | m.def("as_stream", [](ExternalStream<E> extStream) { return std::shared_ptr<Stream>(new Stream(extStream)); }); |
| 495 | } |
| 496 | |
| 497 | void Stream::Export(py::module &m) |
| 498 | { |
nothing calls this directly
no outgoing calls
no test coverage detected