gdcm::SerieHelper impacts ITK, which uses it, and even exposes it publicly
Cross-platform DICOM implementation
Brought to you by:
malat
The recent deprecation of gdcm::SerieHelper is problematic for ITK.
itk::GDCMSeriesFileNames class exposes a public getter for the SerieHelper:
gdcm::SerieHelper * GetSeriesHelper(void)
I've made a patch to at least mark it deprecated:
http://review.source.kitware.com/#/c/20666/
But the itk::GDCMSeriesFileNames class seems based on SerieHelper too. That's a bigger change that requires more GDCM knowledge than I have...
Also, even gdcm::Sorter itself includes gdcmSerieHelper.h because it uses gdcm::FileWithName, and the comments for FileWithName say "do not use in newer code". So it seems even GDCM is still using it's own deprecated code internally...
I think the deprecation of gdcm::SerieHelper is premature.
Revert deprecation completely for now: f54ddf1