fw4spl
GzBufferImageReader.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_READER_GZBUFFERIMAGEREADER_HPP__
8 #define __FWDATAIO_READER_GZBUFFERIMAGEREADER_HPP__
9 
10 #include "fwDataIO/config.hpp"
11 #include "fwDataIO/reader/GenericObjectReader.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 reader
22 {
23 
31 class FWDATAIO_CLASS_API GzBufferImageReader : public GenericObjectReader< ::fwData::Image >,
32  public ::fwData::location::enableSingleFile< IObjectReader >
33 {
34 
35 public:
36 
38  (()),
39  ::fwDataIO::reader::factory::New< GzBufferImageReader >
40  );
41 
44 
46  FWDATAIO_API virtual ~GzBufferImageReader();
47 
49  FWDATAIO_API virtual void read() override;
50 
52  FWDATAIO_API std::string extension() override;
53 
54 };
55 
56 } // namespace reader
57 
58 } // namespace fwDataIO
59 
60 #endif // __FWDATAIO_READER_GZBUFFERIMAGEREADER_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.
generic class for all object readers.
Image Reader. Read file format .raw.gz.
#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