]> git.tdb.fi Git - libs/gui.git/blob - source/graphics/png/pngloader.h
Make the image loading code more modular
[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 public:
17         PngLoader(IO::Base &, const std::string &);
18         virtual ~PngLoader();
19
20         static bool detect(const std::string &);
21
22         virtual void load(Image::Data &);
23 };
24
25 } // namespace Graphics
26 } // namespace Msp
27
28 #endif