21 #ifndef otbPersistentFilterStreamingDecorator_hxx
22 #define otbPersistentFilterStreamingDecorator_hxx
31 template <
class TFilter>
34 m_Filter = FilterType::New();
35 m_Streamer = StreamerType::New();
39 template <
class TFilter>
43 this->GetFilter()->Reset();
52 this->GetStreamer()->SetInput(this->GetFilter()->GetOutput());
53 this->GetStreamer()->Update();
56 this->GetFilter()->Synthetize();
59 template <
class TFilter>