Skip to content

Commit

Permalink
changes to reflect new compiler demands, typdef on smart pointers app…
Browse files Browse the repository at this point in the history
…aretnly fail

git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/ttk/trunk@155 0a38917d-65eb-41a1-bb20-5b51c338416a
  • Loading branch information
ntoussaint committed Jun 17, 2011
1 parent 90d74fc commit 4cb40bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Algorithms/itkVTKTensorsToITKTensorsFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class ITK_EXPORT VTKTensorsToITKTensorsFilter : public ImageSource< itk::Image<T
itkTypeMacro(VTKTensorsToITKTensorsFilter, ImageSource);

/** Return the ITK tensor image */
OutputImagePointer GetOutput() const;
typename OutputImageType::Pointer GetOutput() const;

/** Set the input VTK tensor image to convert */
void SetVTKTensors( vtkStructuredPoints* );
Expand Down
8 changes: 4 additions & 4 deletions Algorithms/itkVTKTensorsToITKTensorsFilter.txx
Original file line number Diff line number Diff line change
Expand Up @@ -72,19 +72,19 @@ VTKTensorsToITKTensorsFilter< TTensor, TDimension >
this->Modified();
}



/**
* Get an itk::Image as output
*/
template < class TTensor, int TDimension >
typename itk::Image< TTensor, TDimension >::Pointer
VTKTensorsToITKTensorsFilter< TTensor, TDimension >
::GetOutput() const
VTKTensorsToITKTensorsFilter< TTensor, TDimension >::GetOutput() const
{
return m_Output;
}






Expand Down

0 comments on commit 4cb40bc

Please sign in to comment.