FAST  3.2.0
Framework for Heterogeneous Medical Image Computing and Visualization
DICOMFileImporter.hpp
Go to the documentation of this file.
1 #ifndef FAST_DICOM_FILE_IMPORTER_HPP_
2 #define FAST_DICOM_FILE_IMPORTER_HPP_
3 
4 #include "Importer.hpp"
5 #include <string>
6 
7 namespace fast {
8 
9 class FAST_EXPORT DICOMFileImporter : public Importer {
11  public:
12  void setFilename(std::string filename);
13  void setLoadSeries(bool load);
14  private:
16  void execute() override;
17 
18  bool mLoadSeries = true;
19  std::string mFilename = "";
20 };
21 
22 }
23 
24 #endif
fast
Definition: AffineTransformation.hpp:7
FAST_OBJECT
#define FAST_OBJECT(className)
Definition: Object.hpp:9
fast::DICOMFileImporter
Definition: DICOMFileImporter.hpp:9
Importer.hpp
fast::Importer
Definition: Importer.hpp:8