1 #ifndef MSP_GRAPHICS_BMPLOADER_H_
2 #define MSP_GRAPHICS_BMPLOADER_H_
4 #include <msp/graphics/imageloader.h>
9 class BmpLoader: public RegisteredImageLoader<BmpLoader>
16 BmpLoader(IO::Base &, unsigned = 0);
18 static unsigned get_signature_size() { return 2; }
19 static bool detect(const std::string &);
21 virtual void load(Image::Data &);
24 } // namespace Graphics