1 #ifndef MSP_GRAPHICS_JPEGLOADER_H_
2 #define MSP_GRAPHICS_JPEGLOADER_H_
4 #include <msp/graphics/imageloader.h>
9 class JpegLoader: public ImageLoader
16 static Register<JpegLoader> reg;
19 JpegLoader(IO::Seekable &);
20 virtual ~JpegLoader();
22 static unsigned get_signature_size() { return 3; }
23 static bool detect(const std::string &);
25 virtual void load(Image::Data &);
28 } // namespace Graphics