File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 6262 ProcessObject::createOutputPort<DataObject>(port);
6363 }
6464
65+ virtual void stopPipeline() override {
66+ ProcessObject::stopPipeline();
67+ }
68+
6569 }; // end class python process object
6670
6771 class PythonStreamer : public Streamer {
114118 void frameAdded() {
115119 Streamer::frameAdded();
116120 }
121+ virtual void stopPipeline() override {
122+ Streamer::stopPipeline();
123+ }
117124 }; // end class python streamer
118125
119126
198205 void setFramerate(int framerate) {
199206 RandomAccessStreamer::setFramerate(framerate);
200207 }
208+ virtual void stopPipeline() override {
209+ RandomAccessStreamer::stopPipeline();
210+ }
201211 }; // end class python random access streamer
202212 } // end namespace
203213 %}
You can’t perform that action at this time.
0 commit comments