Skip to content
Snippets Groups Projects
Commit b85c0e62 authored by Julien Malik's avatar Julien Malik
Browse files

ENH: add default value for the second template parameter

parent ac94befe
Branches
Tags
No related merge requests found
...@@ -39,7 +39,7 @@ namespace otb ...@@ -39,7 +39,7 @@ namespace otb
* \ingroup Multithreaded * \ingroup Multithreaded
* *
*/ */
template<class TInputImage, class TOutputImage> template<class TInputImage, class TOutputImage = TInputImage>
class ITK_EXPORT PersistentShrinkImageFilter : class ITK_EXPORT PersistentShrinkImageFilter :
public PersistentImageFilter<TInputImage, TOutputImage> public PersistentImageFilter<TInputImage, TOutputImage>
{ {
...@@ -134,7 +134,7 @@ private: ...@@ -134,7 +134,7 @@ private:
* \ingroup Multithreaded * \ingroup Multithreaded
* *
*/ */
template<class TInputImage, class TOutputImage> template<class TInputImage, class TOutputImage = TInputImage>
class ITK_EXPORT StreamingShrinkImageFilter : class ITK_EXPORT StreamingShrinkImageFilter :
public PersistentFilterStreamingDecorator< PersistentShrinkImageFilter<TInputImage, TOutputImage> > public PersistentFilterStreamingDecorator< PersistentShrinkImageFilter<TInputImage, TOutputImage> >
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment