Warning, file /frameworks/khtml/src/imload/decoders/pngloader.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 #ifndef PNG_LOADER_H
0002 #define PNG_LOADER_H
0003 
0004 #include "imageloaderprovider.h"
0005 
0006 namespace khtmlImLoad
0007 {
0008 
0009 class ImageLoader;
0010 
0011 class PNGLoaderProvider: public ImageLoaderProvider
0012 {
0013 public:
0014     Type type() override;
0015 
0016     ImageLoader *loaderFor(const QByteArray &prefix) override;
0017 };
0018 
0019 }
0020 
0021 #endif