]> git.tdb.fi Git - libs/gui.git/blobdiff - source/graphics/jpeg/jpegloader.h
Use standard fixed size integer types
[libs/gui.git] / source / graphics / jpeg / jpegloader.h
index d45e599825abd150f10cce35644a2335bbda93e6..793951acc6784fa16a012e3a1d12c1192ac203b2 100644 (file)
@@ -13,16 +13,15 @@ private:
 
        Private *priv;
 
-       static Register<JpegLoader> reg;
-
 public:
        JpegLoader(IO::Seekable &);
-       virtual ~JpegLoader();
+       ~JpegLoader();
 
        static unsigned get_signature_size() { return 3; }
        static bool detect(const std::string &);
 
-       virtual void load(Image::Data &);
+       void load_headers_(Image::Data &) override;
+       void load_pixels_(Image::Data &) override;
 };
 
 } // namespace Graphics