]> 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 bf902d64c5b9b90f0ef95d241c6f4a7f7e28efde..793951acc6784fa16a012e3a1d12c1192ac203b2 100644 (file)
@@ -15,12 +15,13 @@ private:
 
 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