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