#include <QtGui/qimageiohandler.h>
#ifndef QIMAGEIOHANDLER_H
class QImageIOHandler{
   /* Some contents are skipped to improve readability */
   public: enum ImageOption{
      Size = 0,
      ClipRect = 1,
      Description = 2,
      ScaledClipRect = 3,
      ScaledSize = 4,
      CompressionRatio = 5,
      Gamma = 6,
      Quality = 7,
      Name = 8,
      SubType = 9,
      IncrementalReading = 10,
      Endianness = 11,
      Animation = 12,
      BackgroundColor = 13,
   };
   /* ... */
};
#endif // QIMAGEIOHANDLER_H