fw4spl
GzBufferImageWriter.hpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-2017.
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 __FWDATAIO_WRITER_GZBUFFERIMAGEWRITER_HPP__
8 #define __FWDATAIO_WRITER_GZBUFFERIMAGEWRITER_HPP__
9 
10 #include "fwDataIO/config.hpp"
11 #include "fwDataIO/writer/GenericObjectWriter.hpp"
12 
13 #include <fwData/Image.hpp>
14 #include <fwData/location/SingleFile.hpp>
15 
16 #include <boost/filesystem/path.hpp>
17 
18 namespace fwDataIO
19 {
20 
21 namespace writer
22 {
23 
31 class FWDATAIO_CLASS_API GzBufferImageWriter : public GenericObjectWriter< ::fwData::Image >,
32  public ::fwData::location::enableSingleFile< ::fwDataIO::writer::
33  IObjectWriter >
34 {
35 
36 public:
37 
39  (()),
40  ::fwDataIO::writer::factory::New< GzBufferImageWriter >
41  );
42 
45 
47  FWDATAIO_API virtual ~GzBufferImageWriter();
48 
50  FWDATAIO_API virtual void write() override;
51 
53  FWDATAIO_API virtual std::string extension() override;
54 
55 };
56 
57 } // namespace writer
58 
59 } // namespace fwDataIO
60 
61 #endif // __FWDATAIO_WRITER_GZBUFFERIMAGEWRITER_HPP__
This namespace fwDataIO contains reader and writer for several framework&#39;s data.
Key class used to restrict access to Object construction. See http://www.drdobbs.com/184402053.
#define fwCoreClassDefinitionsWithFactoryMacro(_classinfo_, _parameters_, _factory_)
Generate common construction methods for classes with one factory.
This class is derived by reader/writer.
Definition: SingleFile.hpp:70
Image Writer. Write file format .raw.gz.
generic class for all object writers.