FAST  3.2.0
Framework for Heterogeneous Medical Image Computing and Visualization
ImageFileImporter.hpp
Go to the documentation of this file.
1 #ifndef IMAGE_FILE_IMPORTER_HPP_
2 #define IMAGE_FILE_IMPORTER_HPP_
3 
4 #include "FAST/ProcessObject.hpp"
5 
6 namespace fast {
7 
8 class FAST_EXPORT ImageFileImporter : public ProcessObject {
10  public:
11  void setFilename(std::string filename);
12  void loadAttributes() override;
13  private:
15  void execute();
16 
17  std::string mFilename;
18 };
19 
20 }
21 
22 #endif
fast
Definition: AffineTransformation.hpp:7
fast::ImageFileImporter
Definition: ImageFileImporter.hpp:8
FAST_OBJECT
#define FAST_OBJECT(className)
Definition: Object.hpp:9
ProcessObject.hpp
fast::ProcessObject
Definition: ProcessObject.hpp:22