io_png.hpp
Go to the documentation of this file.
1 
17 #ifndef IO_PNG_HPP
18 #define IO_PNG_HPP
19 
20 #include <image.hpp>
21 #include <io_image.hpp>
22 
23 namespace cpe
24 {
25 
27 class io_png : public io_image
28 {
29 public:
30 
31  // ********************************************* //
32  // ********************************************* //
33  // Interface
34  // ********************************************* //
35  // ********************************************* //
36 
38  virtual image read(const std::string& filename) const;
39 
41  virtual void write(const image& im,const std::string& filename) const;
42 
43 private:
44 };
45 }
46 
47 #endif