fw4spl
GdcmHelper.hpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-2015.
3  * Distributed under the terms of the GNU Lesser General Public License (LGPL) as
4  * published by the Free Software Foundation.
5  * ****** END LICENSE BLOCK ****** */
6 
7 #ifndef __VTKGDCMIO_HELPER_GDCMHELPER_HPP__
8 #define __VTKGDCMIO_HELPER_GDCMHELPER_HPP__
9 
10 #include <boost/filesystem/path.hpp>
11 #include <boost/filesystem.hpp>
12 
13 #include "vtkGdcmIO/config.hpp"
14 
15 namespace vtkGdcmIO
16 {
17 namespace helper
18 {
19 
26 class VTKGDCMIO_CLASS_API DicomSearch
27 {
28 public:
29  VTKGDCMIO_API static void searchRecursivelyFiles(const ::boost::filesystem::path &dirPath,
30  std::vector<std::string>& dicomFiles);
31  static bool compare(std::string & _strOrgin, std::vector<std::string> * vecStr);
32 };
33 
34 } // namespace helper
35 } // namespace vtkGdcmIO
36 
37 #endif /*__VTKGDCMIO_HELPER_GDCMHELPER_HPP__*/
vtkmGdcm reader/writer lib
Definition: GdcmHelper.hpp:15
This class contains helpers to search dicom files on filesystem...
Definition: GdcmHelper.hpp:26