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