]> git.tdb.fi Git - libs/gui.git/blob - source/graphics/png/pngloader.h
683f4d37389d3e98189b7edeaf41876c716a6f94
[libs/gui.git] / source / graphics / png / pngloader.h
1 #ifndef MSP_GRAPHICS_PNGLOADER_H_
2 #define MSP_GRAPHICS_PNGLOADER_H_
3
4 #include <msp/graphics/imageloader.h>
5
6 namespace Msp {
7 namespace Graphics {
8
9 class PngLoader: public ImageLoader
10 {
11 private:
12         struct Private;
13
14         Private *priv;
15
16         static Register<PngLoader> reg;
17
18 public:
19         PngLoader(IO::Base &, unsigned = 0);
20         virtual ~PngLoader();
21
22         static unsigned get_signature_size() { return 8; }
23         static bool detect(const std::string &);
24
25         virtual void load(Image::Data &);
26 };
27
28 } // namespace Graphics
29 } // namespace Msp
30
31 #endif